-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (41 loc) · 1.33 KB
/
package.json
File metadata and controls
42 lines (41 loc) · 1.33 KB
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
33
34
35
36
37
38
39
40
41
42
{
"name": "backend-api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"apidoc": "./node_modules/.bin/apidoc -i src/ -o docs/ --silent",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"dev:start-inspect": "npm-run-all lint build apidoc && node -r ts-node/register --inspect ./src/server.ts",
"dev-debug": "NODE_ENV=development node_modules/.bin/nodemon --watch src -e ts --exec yarn dev:start-inspect",
"dev:start": "npm-run-all lint build apidoc && ts-node ./src/server.ts",
"dev": "NODE_ENV=development node_modules/.bin/nodemon --watch src -e ts --exec yarn dev:start",
"build": "tsc"
},
"devDependencies": {
"@types/compression": "^0.0.36",
"@types/express": "^4.17.0",
"@types/graphql": "^14.2.2",
"@types/node": "^12.0.10",
"nodemon": "^1.19.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
},
"dependencies": {
"apidoc": "^0.17.7",
"apollo-server-express": "^2.6.7",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"graphql": "^14.4.1",
"graphql-merge-resolvers": "^1.1.11",
"graphql-subscriptions": "^1.1.0",
"http": "^0.0.0",
"mongoose": "^5.6.2",
"morgan": "^1.9.1",
"npm-run-all": "^4.1.5",
"tslint": "^5.18.0",
"winston": "^3.2.1"
}
}