-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "graphql-tutorial",
"version": "1.0.0",
"description": "graphql tutorial project",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.js",
"start:v1": "nodemon src/index_v1.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/junminstorage/graphql-tutorial.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/junminstorage/graphql-tutorial/issues"
},
"homepage": "https://github.com/junminstorage/graphql-tutorial",
"dependencies": {
"express": "^4.16.2",
"express-graphql": "git+https://github.com/junminstorage/express-graphql.git#websocket-option",
"graphql": "^0.13.0",
"graphql-subscriptions": "^0.5.8",
"graphql-tools": "^2.20.2",
"graphql-ws": "^3.2.0",
"nodemon": "^1.15.0",
"subscriptions-transport-ws": "^0.9.6",
"ws": "^7.4.2"
},
"devDependencies": {
"eslint": "^4.17.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^22.2.2"
}
}