-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.28 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.28 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
43
44
{
"name": "gdmnNLPsvr",
"version": "0.0.1",
"private": true,
"scripts": {
"devServer": "yarn run build&&node ./src/start.js",
"prodServer": "yarn run build&&set NODE_ENV=production&&node ./src/start.js",
"build": "tsc",
"start": "yarn run prodServer",
"startPM2Server": "pm2 start prod.config.pm2.json",
"stopPM2Server": "pm2 delete prod.config.pm2.json",
"monitorPM2": "pm2 monit",
"updatePM2": "pm2 update"
},
"dependencies": {
"body-parser": "^1.18.2",
"config": "^1.30.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "^4.16.2",
"graphql": "^0.13.1",
"graphql-sql-bridge": "https://github.com/sywka/graphql-sql-bridge.git#v.0.0.4",
"graphql-voyager": "^1.0.0-rc.15",
"morgan": "^1.9.0",
"nesthydrationjs": "^1.0.3",
"path": "^0.12.7",
"pm2": "^2.10.1",
"pug": "^2.0.0-rc.4",
"serve-static": "^1.13.2"
},
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/config": "^0.0.34",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.3",
"@types/express": "^4.11.1",
"@types/express-graphql": "^0.0.36",
"@types/graphql": "^0.12.4",
"@types/hapi": "^17.0.4",
"@types/koa": "^2.0.44",
"@types/morgan": "^1.7.35",
"typescript": "^2.7.2"
}
}