forked from trevordbunch/cis411_lab1_CI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 788 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
{
"name": "cis411_lab1_CI",
"version": "0.0.1",
"description": "GitHub and CircleCI building a simple GraphQL service",
"main": "server.js",
"scripts": {
"run": "node server.js",
"test": "exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trevordbunch/cis411_lab1_CI.git"
},
"keywords": [
"git",
"github",
"circleci",
"graphql"
],
"author": "Joel Worrall <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/trevordbunch/cis411_lab1_CI/issues"
},
"homepage": "https://github.com/trevordbunch/cis411_lab1_CI#readme",
"dependencies": {
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^14.0.2",
"lokijs": "^1.5.5",
"uuid": "^3.3.2"
}
}