-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "crispy-worker",
"version": "0.0.1",
"description": "Server worker to communicate with crispy-api and run commands by using crispy-cli",
"main": "dist/index.js",
"repository": "git@github.com:WiseEngineering/crispy-worker.git",
"author": "WiseEngineering open-source@wise-engineering.com",
"license": "MIT",
"private": false,
"scripts": {
"start": "node ./dist/index.js",
"develop": "nodemon --watch 'src/**/*.ts' --ext 'ts' --exec 'yarn build'",
"build": "tsc -p .",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .ts src",
"clean": "rm -rf ./node_modules ./dist && yarn"
},
"dependencies": {
"apollo-server-express": "2.9.16",
"express": "4.17.1"
},
"devDependencies": {
"@types/express": "4.17.2",
"@types/node": "13.1.8",
"@typescript-eslint/eslint-plugin": "2.17.0",
"@typescript-eslint/parser": "2.17.0",
"eslint": "6.8.0",
"nodemon": "2.0.2",
"ts-node": "8.6.2",
"typescript": "3.7.5"
}
}