-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
35 lines (35 loc) · 919 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
32
33
34
35
{
"name": "nodejs-graphql-mysql-example",
"version": "1.0.0",
"description": "An example Express based app implementing a GraphQL API using MySQL as its datastore",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/YuLeven/nodejs-graphql-mysql-example.git"
},
"keywords": [
"nodejs",
"example",
"async",
"await",
"tutorial",
"wrapper"
],
"author": "Yuri Levenhagen",
"license": "MIT",
"bugs": {
"url": "https://github.com/YuLeven/nodejs-graphql-mysql-example/issues"
},
"homepage": "https://github.com/YuLeven/nodejs-graphql-mysql-example#readme",
"dependencies": {
"body-parser": "^1.17.2",
"express": "^4.15.3",
"express-graphql": "^0.6.11",
"graphql": "^0.12.3",
"mysql": "^2.17.1"
}
}