-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.86 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.86 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "graphql-node-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clusters": "NODE_ENV=production node dist/clusters",
"build": "npm run gulp build",
"start": "npm run clusters",
"dev": "NODE_ENV=development JWT_SECRET=jwt_secret node_modules/.bin/nodemon --delay 5 dist/index",
"gulp": "node_modules/.bin/gulp",
"test": "NODE_ENV=test JWT_SECRET=jwt_test mocha",
"circleci": "NODE_ENV=circleci JWT_SECRET=jwt_pipelines mocha",
"coverage": "nyc --extension .ts --include 'src/**/*.ts' --reporter html npm test",
"postinstall": "npm run gulp build"
},
"engines": {
"node": "10.13.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/chai": "^4.1.7",
"@types/chai-http": "^3.0.5",
"@types/compression": "0.0.36",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/express-graphql": "^0.6.2",
"@types/graphql": "^0.13.4",
"@types/helmet": "0.0.42",
"@types/jsonwebtoken": "^7.2.8",
"@types/lodash": "^4.14.118",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.10",
"@types/sequelize": "^4.27.31",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"gulp": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-typescript": "^5.0.0-alpha.3",
"mocha": "^5.2.0",
"nodemon": "^1.18.6",
"nyc": "^14.1.1",
"ts-node": "^7.0.1",
"typescript": "^3.1.6"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.3",
"cors": "^2.8.5",
"dataloader": "^1.4.0",
"express": "4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^0.13.2",
"graphql-fields": "^1.3.0",
"graphql-tools": "^3.1.1",
"helmet": "^3.15.0",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.11",
"mysql2": "^1.6.4",
"sequelize": "^4.41.2"
}
}