-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.26 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
{
"name": "kit",
"version": "1.0.0",
"description": "Starting point for the Apollo GraphQL Server tutorial.",
"main": "server.js",
"dependencies": {
"apollo-datasource-rest": "^0.1.4",
"apollo-server-express": "^2.0.0",
"casual": "^1.5.19",
"cors": "^2.8.4",
"express": "^4.16.2",
"graphql": "^0.13.2",
"graphql-tools": "^2.13.0",
"lodash": "^4.17.4",
"node-fetch": "^1.7.3"
},
"devDependencies": {
"@babel/core": "^7.0.0-rc.1",
"@babel/node": "^7.0.0-rc.1",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-rc.1",
"@babel/preset-env": "^7.0.0-rc.1",
"nodemon": "^1.12.1"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
]
},
"scripts": {
"start": "nodemon ./server.js --exec babel-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apollographql/apollo-tutorial-kit.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/apollographql/apollo-tutorial-kit/issues"
},
"homepage": "https://github.com/apollographql/apollo-tutorial-kit#readme"
}