-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
35 lines (35 loc) · 896 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": "express-graphql-basic-server",
"version": "1.0.0",
"description": "this is test for graphql",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tariqulislam/express-graphql-basic-server.git"
},
"keywords": [
"graphql",
"express-graphql",
"express",
"mysql"
],
"author": "Tariqul Islam",
"license": "MIT",
"bugs": {
"url": "https://github.com/tariqulislam/express-graphql-basic-server/issues"
},
"homepage": "https://github.com/tariqulislam/express-graphql-basic-server#readme",
"dependencies": {
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^0.13.2",
"lodash": "^4.17.10",
"mongoose": "^5.2.4",
"nodemon": "^1.18.3"
}
}