-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
{
"name": "expressjs-graphql",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "npm run prod",
"dev": "NODE_ENV=development npm run watch ./src/bin/www",
"prod": "npm run build && NODE_ENV=production node ./dist/bin/www",
"build": "npm run clean && babel -d ./dist ./src -s",
"clean": "rimraf dist",
"watch": "nodemon --config ./nodemon.json --"
},
"dependencies": {
"@babel/polyfill": "^7.4.3",
"apollo-server-express": "^2.4.8",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"express": "~4.16.0",
"graphql": "^14.2.1",
"graphql-tools": "^4.0.4",
"i18next": "^15.0.9",
"i18next-express-middleware": "^1.7.3",
"i18next-node-fs-backend": "^2.1.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"merge-graphql-schemas": "^1.5.8",
"morgan": "~1.9.0",
"rimraf": "^2.6.3"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.3.1",
"@babel/runtime": "^7.4.3",
"babel-eslint": "^10.0.1",
"babel-plugin-import-graphql": "^2.7.0",
"eslint": "^5.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^1.18.9"
}
}