-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.76 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "graphql-node-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clusters": "NODE_ENV=production port=8080 node dist/clusters",
"build": "npm run gulp build",
"start": "npm run build && npm run clusters",
"dev": "NODE_ENV=development JWT_SECRET=iron_man node_modules/.bin/nodemon --delay 5 dist/index",
"gulp": "node_modules/.bin/gulp",
"test": "NODE_ENV=test JWT_SECRET=jwt_test mocha",
"pipelines": "NODE_ENV=pipelines JWT_SECRET=jwt_pipelines mocha",
"coverage": "nyc --extension .ts --include 'src/**/*.ts' --reporter html npm test"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "2.4.1",
"@types/chai": "4.0.4",
"@types/chai-http": "3.0.3",
"@types/compression": "0.0.34",
"@types/cors": "2.8.3",
"@types/express": "4.0.37",
"@types/express-graphql": "0.0.34",
"@types/graphql": "0.11.5",
"@types/helmet": "0.0.36",
"@types/jsonwebtoken": "7.2.3",
"@types/lodash": "4.14.78",
"@types/mocha": "2.2.44",
"@types/node": "8.0.34",
"@types/sequelize": "4.0.76",
"chai": "4.1.2",
"chai-http": "3.0.0",
"gulp": "3.9.1",
"gulp-clean": "0.3.2",
"gulp-typescript": "3.2.2",
"mocha": "4.0.1",
"nodemon": "1.12.0",
"nyc": "11.3.0",
"ts-node": "3.3.0",
"typescript": "2.5.3"
},
"dependencies": {
"bcryptjs": "2.4.3",
"compression": "1.7.1",
"cors": "2.8.4",
"dataloader": "1.3.0",
"express": "4.16.2",
"express-graphql": "0.6.11",
"graphql": "0.11.7",
"graphql-fields": "1.0.2",
"graphql-tools": "2.3.0",
"helmet": "3.9.0",
"jsonwebtoken": "8.1.0",
"lodash": "4.17.4",
"mysql2": "1.4.2",
"sequelize": "4.13.10"
}
}