-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.17 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
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "graphql-sso-example",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/zushenyan/graphql-sso-example.git",
"author": "Andrew Yan <[email protected]>",
"license": "MIT",
"engines": {
"node": "8.0.0"
},
"dependencies": {
"axios": "^0.16.2",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"express": "^4.15.3",
"express-graphql": "^0.6.6",
"google-auth-library": "^0.10.0",
"graphql": "^0.10.1",
"helmet": "^3.8.0",
"jsonwebtoken": "^7.4.1",
"knex": "^0.13.0",
"lodash": "^4.17.4",
"morgan": "^1.8.2",
"pg": "^6.4.0",
"pm2": "^2.6.1",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^1.4.6"
},
"devDependencies": {
"faker": "^4.1.0",
"jest": "^20.0.4",
"nodemon": "^1.11.0",
"supertest": "^3.0.0"
},
"scripts": {
"start": "NODE_ENV=production NODE_PATH=. node boot.js",
"dev": "NODE_ENV=development NODE_PATH=. nodemon boot.js",
"test": "NODE_ENV=test NODE_PATH=. jest --watch",
"nodemon": "NODE_PATH=. nodemon",
"pm2": "NODE_ENV=production NODE_PATH=. pm2",
"knex": "NODE_PATH=. knex"
}
}