-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.72 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "strategy-heartbeat",
"version": "0.1.0",
"description": "Basic heartbeat service (as a sammler strategy).",
"keywords": [
"sammler"
],
"homepage": "https://github.com/sammler/strategy-heartbeat#readme",
"bugs": {
"url": "https://github.com/sammler/strategy-heartbeat/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sammler/strategy-heartbeat.git"
},
"license": "MIT",
"author": "Stefan Walther <swr.nixda@gmail.com> (http://qliksite.io)",
"main": "index.js",
"scripts": {
"precommit": "npm run lint:fix",
"ensure:nodemon": "(npm list nodemon -g || npm install nodemon -g)",
"lint": "npm run lint:src && npm run lint:test",
"lint:fix": "npm run lint:src:fix && npm run lint:test:fix",
"lint:src": "eslint src --quiet",
"lint:src:fix": "eslint src --fix",
"lint:test": "eslint test --quiet",
"lint:test:fix": "eslint test --fix",
"start": "node index.js",
"start:debug": "node --inspect=0.0.0.0 index.js",
"start:watch": "npm run ensure:nodemon && nodemon -L --config ./nodemon.json --exec npm run start",
"start:watch:debug": "npm run ensure:nodemon && nodemon -L --config ./nodemon.json --exec npm run start:debug",
"test": "npm run test:unit && npm run test:integration",
"test:integration": "npx mocha './test/integration/**/*.spec.js' --require './test/mocha.conf.js' --timeout 6000 --exit",
"test:unit": "npx mocha './test/unit/**/*.spec.js' --require './test/mocha.conf.js' --exit"
},
"dependencies": {
"@sentry/node": "^4.5.3",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cors": "^2.8.5",
"death": "^1.1.0",
"debug": "^4.1.1",
"express": "^4.16.4",
"express-initializers": "0.0.1",
"express-result": "^0.1.5",
"glob": "^7.1.3",
"helmet": "^3.15.0",
"http-status-codes": "^1.3.0",
"js-yaml": "^3.12.0",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"mongoose": "^5.3.12",
"mongoose-connection-config": "^0.1.2",
"morgan": "^1.9.1",
"morgan-json": "^1.1.0",
"node-nats-streaming": "0.0.51",
"pkg": "^4.3.4",
"promise-retry": "^1.1.1",
"read-pkg-up": "^4.0.0",
"sammler-io-audit-logs": "0.0.4",
"sammler-nodelib-logger": "^0.2.4",
"serve-favicon": "^2.5.0",
"superagent": "^4.0.0",
"swagger-jsdoc": "^3.2.3",
"swagger-ui-express": "^4.0.0",
"winster": "^0.2.13",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "4.2.0",
"codecov": "3.1.0",
"eslint": "5.13.0",
"eslint-config-space-single": "0.3.11",
"eslint-plugin-mocha": "5.2.1",
"husky": "1.3.1",
"mocha": "5.2.0",
"nyc": "13.1.0",
"sinon": "7.2.3",
"supertest": "3.4.2"
}
}