-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.76 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
{
"name": "whenbot-alarm-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "tslint --project .",
"format": "prettier --write \"src/**/*.ts\" --config .prettierrc",
"build": "echo Using TypeScript && tsc --version && tsc -p ./tsconfig.pro.json --pretty",
"start:dev": "cross-env DEBUG=horizon* cross-env nodemon",
"start:prod": "node dist/index.js",
"prestart:prod": "rimraf dist && npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/koa": "^2.0.46",
"@types/koa-bodyparser": "^5.0.1",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.0.33",
"@types/lodash": "^4.14.137",
"@types/log4js": "^2.3.5",
"@types/mocha": "^5.2.6",
"@types/moment-timezone": "^0.5.12",
"@types/node": "^10.12.7",
"@types/node-statsd": "^0.1.2",
"@types/object-hash": "^1.2.0",
"@types/object-merge": "^2.5.0",
"@types/should": "^13.0.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"mocha": "^6.0.2",
"nodemon": "^1.18.6",
"rimraf": "^2.6.2",
"prettier": "^1.18.2",
"supertest": "^4.0.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.1.6"
},
"dependencies": {
"@koa/cors": "^2.2.2",
"bee-queue": "^1.2.2",
"ioredis": "^4.14.0",
"koa": "^2.6.2",
"koa-bodyparser": "^4.2.1",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"lodash": "^4.17.15",
"log4js": "^3.0.6",
"moment": "^2.22.2",
"moment-timezone": "^0.5.25",
"mysql2": "^1.6.5",
"object-hash": "^1.3.1",
"object-merge": "^2.5.1",
"should": "^13.2.3"
}
}