-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathpackage.json
41 lines (41 loc) · 903 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
36
37
38
39
40
41
{
"name": "cis411_lab0",
"version": "0.0.1",
"description": "GitHub and CircleCI building a simple GraphQL service",
"engines": {
"node": "11.x",
"npm": "6.4.1"
},
"main": "server.js",
"scripts": {
"run": "node server.js",
"test": "exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tangollama/cis411_lab2.git"
},
"keywords": [
"git",
"github",
"circleci",
"graphql"
],
"author": "Joel Worrall <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tangollama/cis411_lab2/issues"
},
"homepage": "https://github.com/tangollama/cis411_lab2#readme",
"dependencies": {
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^14.0.2",
"heroku": "^7.18.7",
"lokijs": "^1.5.5",
"uuid": "^3.3.2"
},
"devDependencies": {
"nyc": "^13.1.0"
}
}