-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 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
{
"name": "imbob",
"version": "1.0.0",
"description": "A simple GraphQL API project",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "mocha test",
"subscriptionListener": "node subscriptionListener.js"
},
"repository": {
"type": "git",
"url": "git+https://reselbob@github.com/reselbob/IMBOB.git"
},
"author": "reselbob",
"license": "ISC",
"bugs": {
"url": "https://github.com/reselbob/IMBOB/issues"
},
"homepage": "https://github.com/reselbob/IMBOB#readme",
"dependencies": {
"apollo-errors": "^1.9.0",
"apollo-link": "^1.2.11",
"apollo-link-ws": "^1.0.17",
"apollo-server": "^2.4.0",
"graphql": "^14.3.1",
"graphql-tag": "^2.10.1",
"graphql-tools": "^4.0.4",
"lodash": "^4.17.11",
"node-fetch": "^2.6.7",
"subscriptions-transport-ws": "^0.9.16",
"uuid": "^3.3.2",
"ws": "^6.2.2"
},
"devDependencies": {
"chai": "^4.2.0",
"faker": "^4.1.0",
"graphql-request": "^5.0.0",
"mocha": "^10.1.0",
"supertest": "^3.4.2"
}
}