-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.42 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
{
"name": "express-graphql-boilerplate-ES2017",
"version": "1.0.0",
"description": "simple express graphql boilerplate with ES2017 functionality - based on Edd Yerburgh's repository at https://github.com/eddyerburgh/express-graphql-boilerplate",
"main": "server.js",
"scripts": {
"dev": "NODE_ENV=dev babel-node ./src/server.js",
"build": "babel src -d lib --source-maps",
"lint": "eslint server.js lib data",
"lint:fix": "npm run lint -- --fix",
"start": "npm run build && NODE_ENV=production node ./lib/server.js",
"test": "npm run lint"
},
"author": "Edd Yerburgh, Andrew Serianni",
"license": "MIT",
"dependencies": {
"body-parser": "^1.17.1",
"config": "^1.25.1",
"cors": "^2.8.1",
"express": "^4.15.2",
"express-jwt": "^5.3.0",
"graphql": "^0.9.1",
"graphql-server-express": "^0.6.0",
"graphql-tools": "^0.10.1",
"winston": "^2.3.1"
},
"devDependencies": {
"@earnest/eslint-config-es7": "^4.0.1",
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-react": "^6.10.0"
}
}