-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "gql-play",
"version": "0.0.1",
"description": "Playing with GraphQL and Relay",
"main": "index.js",
"scripts": {
"start": "babel-node server.es6",
"populate": "babel-node scripts/populationScript.es6"
},
"keywords": [
"graphql",
"react",
"relay",
"mongodb",
"mongoose"
],
"author": "Mario Castro <[email protected]> (http://mariocaster.blogspot.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/sayden/graphql-mongodb-example/issues"
},
"homepage": "https://github.com/sayden/graphql-mongodb-example#readme",
"dependencies": {
"body-parser": "^1.13.3",
"express": "^4.13.3",
"graphql": "^0.2.6",
"mongoose": "^4.1.3",
"graphql-relay": "^0.1.0"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-relay-plugin": "^0.1.2",
"babelify": "^6.2.0",
"browserify": "^11.0.1",
"gulp": "^3.9.0",
"gulp-babel": "^5.2.1",
"gulp-load-plugins": "^0.10.0",
"gulp-nodemon": "^2.0.3",
"nodemon": "^1.4.1"
}
}