-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.99 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
{
"name": "Kooragang",
"private": true,
"engines": {
"node": "14.16"
},
"scripts": {
"start": "npm run local-tunnel | npm run local",
"local": "heroku local",
"local-tunnel": "node ./tunnel.js",
"nodemon": "nodemon --exec npm run app",
"web": "node ./app.js",
"dialer-worker": "node ./workers/dialer_worker.js",
"setup-worker": "node ./workers/setup_worker.js",
"audit-worker": "node ./workers/audit_worker.js",
"nightly": "node ./nightly.js",
"debug": "node debug ./app.js",
"test": "./node_modules/.bin/knex migrate:latest --env test && NODE_ENV=test mocha --require test/test_helper.js --full-trace --exit test/**",
"test-watch": "find . -name '*.js' -not -path './node_modules/*' | NODE_ENV=test entr -c mocha --require test/test_helper.js --full-trace test/**",
"deploy-production": "git push kooragang HEAD:main && heroku run knex migrate:latest --app kooragang && git push kooragang-api HEAD:main && git push kooragang-hud HEAD:main",
"deploy-stage": "git push kooragang-stage HEAD:main && heroku run knex migrate:latest --app kooragang-stage && git push kooragang-api-stage HEAD:main",
"lint": "./node_modules/.bin/eslint *.js test models ivr dialer hud load utils workers"
},
"dependencies": {
"@slack/client": "^5.0.2",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"diacritics": "1.3.0",
"ejs": "^2.7.4",
"es6-promisify": "^5.0.0",
"express": "^4.17.1",
"i18n-nodejs": "^3.0.0",
"knex": "^0.19.5",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"newrelic": "^4.13.1",
"objection": "^0.7.12",
"pg": "^8.5.0",
"plivo": "github:GetUp/plivo-node#production",
"socket.io": "^2.4.1"
},
"devDependencies": {
"dotenv": "4.0.0",
"eslint": "4.18.2",
"expect.js": "^0.3.1",
"mocha": "^6.2.3",
"ngrok": "^3.4.1",
"nock": "^9.6.1",
"proxyquire": "^1.7.11",
"sinon": "^2.4.1",
"supertest": "^3.4.2"
}
}