-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.3 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
42
43
44
45
46
47
48
{
"name": "creep-em-out-server",
"version": "1.0.0",
"description": "Server for API creep-em-out API",
"main": "index.js",
"scripts": {
"build": "node ./bin/git-describe public/version.json",
"prestart": "npm run build",
"start": "nodemon",
"pretest": "npm run build",
"test": "nsp check && eslint . && set NODE_ENV=test && jasmine"
},
"author": "Patrick Sullivan",
"license": "MIT",
"dependencies": {
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"dotenv": "^2.0.0",
"errorhandler": "^1.5.0",
"express": "^4.14.0",
"graphql": "^0.8.2",
"graphql-server-express": "^0.4.3",
"graphql-subscriptions": "^0.2.2",
"graphql-tools": "^0.8.3",
"helmet": "^3.1.0",
"http-errors": "^1.5.1",
"jsonwebtoken": "^7.2.1",
"morgan": "^1.7.0",
"serve-favicon": "^2.3.2",
"serve-static": "^1.11.1",
"subscriptions-transport-ws": "^0.3.1",
"uuid": "^3.0.1"
},
"devDependencies": {
"cookie": "^0.3.1",
"cookiejar": "^2.1.0",
"eslint": "^3.11.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"git-describe": "^4.0.1",
"jasmine": "^2.5.2",
"nodemon": "^1.11.0",
"nsp": "^2.6.2",
"supertest": "^2.0.1"
}
}