-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.32 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
49
50
51
52
53
54
{
"name": "graphql-express",
"version": "1.0.0",
"description": "Graphql Express-MongoDB server",
"main": "index.js",
"scripts": {
"start": "nodemon index.js --exec babel-node --presets es2015,stage-2",
"build": "gulp",
"dev": "nodemon index.js"
},
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"express-graphql": "^0.6.1",
"graphql": "^0.8.2",
"mongoose": "^5.8.11"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.26.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-2": "6.24.1",
"del": "^3.0.0",
"gulp": "3.9.1",
"gulp-env": "^0.4.0",
"gulp-babel": "^7.0.0",
"gulp-eslint": "^4.0.0",
"gulp-istanbul": "1.1.2",
"gulp-load-plugins": "^1.5.0",
"gulp-mocha": "^4.3.1",
"gulp-newer": "^1.3.0",
"gulp-nodemon": "^2.2.1",
"gulp-plumber": "^1.1.0",
"gulp-sourcemaps": "^2.6.1",
"gulp-util": "^3.0.8",
"isparta": "4.0.0",
"mocha": "4.0.1",
"run-sequence": "^2.2.0",
"nodemon": "^1.11.0"
},
"babel": {
"presets": [
"es2015",
"stage-2"
],
"plugins": [
"add-module-exports"
]
}
}