-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
31 lines (31 loc) · 898 Bytes
/
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
{
"name": "posts_and_authors_example_from_graphql_tools_docs",
"version": "0.1.0",
"description": "",
"main": "./src/server.js",
"scripts": {
"start": "nodemon ./src/server.js --exec babel-node -e js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-async-generator-functions": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-latest": "^6.23.0",
"eslint": "^3.19.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"body-parser": "^1.17.1",
"casual": "^1.5.17",
"express": "^4.15.2",
"graphql": "^0.9.6",
"graphql-server-express": "^0.6.0",
"graphql-tools": "^0.11.0",
"lodash": "^4.17.4",
"randexp": "^0.4.6"
}
}