-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "faceblock-server",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "PORT=3001 node ./bin/www",
"test": "./node_modules/mocha/bin/mocha --timeout 10000 './src/**/*.spec.js'",
"test-single": "./node_modules/mocha/bin/mocha --timeout 10000",
"db-init": "node -e \"require('./src/db/dbInit').initDatabase()\"",
"eslint": "eslint ./src"
},
"dependencies": {
"bluebird": "^3.4.6",
"body-parser": "~1.15.2",
"cookie-parser": "~1.4.3",
"cors": "^2.8.1",
"debug": "~2.2.0",
"express": "~4.14.0",
"express-graphql": "^0.6.3",
"express-query-int": "^1.0.1",
"graphql": "^0.9.1",
"graphql-relay": "^0.5.1",
"helmet": "^3.1.0",
"humps": "^2.0.0",
"isomorphic-fetch": "^2.2.1",
"joi": "^10.0.6",
"join-monster": "^0.9.9",
"jsonwebtoken": "^7.2.1",
"lodash": "^4.17.2",
"moment": "^2.17.1",
"morgan": "~1.7.0",
"pg-monitor": "^0.5.11",
"pg-promise": "^5.4.3",
"pug": "~2.0.0-beta6",
"serve-favicon": "~2.3.0",
"winston": "^2.3.0",
"winston-daily-rotate-file": "^1.4.0"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.15.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.1.2",
"supertest": "^2.0.1"
}
}