-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "graphql-server-hackathon",
"version": "1.0.0",
"description": "Kynplex GraphQL Hackathon Express Server",
"scripts": {
"start": "nodemon server/index.js --watch server --exec babel-node --presets es2015,stage-2"
},
"author": "Raul Jordan",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.16.0",
"babel-core": "6.17.0",
"babel-eslint": "7.1.1",
"babel-preset-es2015": "6.16.0",
"babel-preset-stage-2": "6.17.0",
"babel-register": "6.16.3",
"eslint": "3.10.1",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-babel": "3.3.0",
"nodemon": "1.11.0"
},
"dependencies": {
"body-parser": "1.15.2",
"cheerio": "^0.22.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"express": "4.14.0",
"graphql": "^0.7.2",
"graphql-server-express": "^0.4.1",
"graphql-tools": "0.8.0",
"lodash": "4.16.5",
"mongoose": "^4.7.0",
"node-fetch": "^1.6.3"
}
}