-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 902 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 902 Bytes
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
{
"name": "kit",
"version": "1.0.0",
"description": "Starting point for the Apollo GraphQL Server tutorial.",
"main": "server.js",
"dependencies": {
"apollo-server-express": "^1.3.0",
"body-parser": "^1.18.2",
"casual": "^1.5.19",
"express": "^4.16.2",
"graphql": "^0.11.7",
"graphql-tools": "^2.13.0",
"lodash": "^4.17.4",
"mongoose": "^4.13.2",
"mysql": "^2.15.0",
"mysql2": "^1.5.2",
"node-fetch": "^1.7.3",
"sequelize": "^4.28.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"nodemon": "^1.12.1"
},
"babel": {
"presets": [
"env"
]
},
"scripts": {
"start": "nodemon ./server.js --exec babel-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leima888/graphql.git"
},
"homepage": "https://github.com/leima888/graphql.git#readme"
}