-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·36 lines (36 loc) · 901 Bytes
/
package.json
File metadata and controls
executable file
·36 lines (36 loc) · 901 Bytes
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
{
"name": "graphQl",
"version": "1.0.0",
"private": true,
"description": "GraphQL API",
"engines": {
"node": "8.9.1"
},
"scripts": {
"start": "nodemon start.js --exec babel-node --presets es2015,stage-2"
},
"dependencies": {
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"es6-promisify": "^5.0.0",
"express": "^4.16.2",
"express-graphql": "^0.6.11",
"graphql": "^0.12.3",
"md5": "^2.2.1",
"mongoose": "^4.13.9",
"morgan": "^1.9.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.12.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"nodemon": "^1.12.1"
}
}