-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 971 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
{
"name": "heartbeat-server",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "./node_modules/nodemon/bin/nodemon.js ./bin/www",
"test": "find ./test -name '*.test.js' | xargs mocha --exit -R spec",
"integrationTest": "docker-compose -f ./test/integration/docker-compose.yml up --build --abort-on-container-exit --exit-code-from test",
"startProd": "NODE_ENV=production node ./bin/www"
},
"dependencies": {
"body-parser": "^1.18.3",
"chai-http": "^4.2.0",
"crypto-js": "^3.1.9-1",
"debug": "~2.6.9",
"dotenv": "^4.0.0",
"express": "^4.16.4",
"moment": "^2.22.2",
"morgan": "^1.9.1",
"redis": "^2.8.0",
"serve-favicon": "~2.4.5",
"uuid": "^3.3.2",
"winston": "^2.4.4",
"winston-daily-rotate-file": "^1.7.2"
},
"devDependencies": {
"chai": "^4.2.0",
"faker": "^4.1.0",
"mocha": "^4.1.0",
"nodemon": "^1.18.8",
"rewire": "^4.0.1",
"sinon": "^4.5.0"
}
}