-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.13 KB
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
{
"name": "graphql-app",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "NODE_ENV=local nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krishnasingh87/graphql-app.git"
},
"keywords": [
"graphql",
"sequelize",
"jwt",
"apollo-server"
],
"author": "krishna singh",
"license": "ISC",
"bugs": {
"url": "https://github.com/krishnasingh87/graphql-app/issues"
},
"homepage": "https://github.com/krishnasingh87/graphql-app#readme",
"dependencies": {
"apollo-server-express": "^1.3.2",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-bearer-token": "^2.1.1",
"graphql": "^0.13.2",
"graphql-playground-middleware-express": "^1.5.7",
"graphql-tools": "^2.23.1",
"jsonwebtoken": "^8.2.0",
"merge-graphql-schemas": "^1.5.1",
"mysql2": "^1.5.3",
"npm": "^5.8.0",
"sequelize": "^4.37.3"
},
"devDependencies": {
"dotenv": "^5.0.1",
"nodemon": "^1.17.2"
}
}