-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
42 lines (42 loc) · 1.3 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
{
"name": "graphql-example",
"version": "1.0.0",
"description": "",
"main": "./src/quick-start.js",
"scripts": {
"quick-start": "nodemon ./src/quick-start.js --exec babel-node -e js",
"features": "nodemon ./src/features.js --exec babel-node -e js",
"mock": "nodemon ./src/mock.js --exec babel-node -e js",
"modular": "nodemon ./src/modular/index.js --exec babel-node -e js",
"test": "babel-node ./src/mock.js",
"h": "nodemon -h"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ducafecat/graphQL-example.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ducafecat/graphQL-example/issues"
},
"homepage": "https://github.com/ducafecat/graphQL-example#readme",
"dependencies": {
"apollo-server-express": "^1.3.5",
"body-parser": "^1.18.2",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-tools": "^2.24.0",
"lodash": "^4.17.10",
"mockjs": "^1.0.1-beta3",
"require-graphql-file": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"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",
"nodemon": "^1.11.0"
}
}