-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.16 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
{
"name": "egg-notes",
"version": "1.0.0",
"description": "",
"private": true,
"egg": {
"typescript": true
},
"scripts": {
"start": "egg-scripts start --port=8000 --workers=1 --daemon --title=egg-server-notify",
"start-dev": "egg-scripts start --port=8000 --workers=1 --title=egg-server-notify",
"stop": "egg-scripts stop --title=egg-server-notify",
"dev": "egg-bin dev --port=8000 -r egg-ts-helper/register",
"debug": "egg-bin debug --port=8000 --workers=1 -r egg-ts-helper/register",
"test-local": "egg-bin test -r egg-ts-helper/register",
"test": "npm run lint -- --fix && npm run test-local",
"cov": "egg-bin cov -r egg-ts-helper/register",
"tsc": "ets && tsc -p tsconfig.json",
"ci": "npm run lint && npm run cov && npm run tsc",
"autod": "autod",
"lint": "tslint .",
"clean": "ets clean"
},
"dependencies": {
"@types/kafka-node": "^2.0.6",
"@types/pg": "^7.4.9",
"egg": "^2.6.1",
"egg-cors": "^2.0.0",
"egg-mysql": "^3.0.0",
"egg-scripts": "^2.6.0",
"egg-socket.io": "^4.0.8",
"egg-view-assets": "^1.1.2",
"egg-view-nunjucks": "^2.2.0",
"jsonwebtoken": "^8.3.0",
"kafka-node": "^2.6.1",
"pg": "^7.4.3",
"uuid": "^3.2.1",
"uws": "^10.148.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^7.2.7",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.12",
"@types/supertest": "^2.0.0",
"@types/uuid": "^3.4.3",
"autod": "^3.0.1",
"autod-egg": "^1.1.0",
"egg-bin": "^4.11.1",
"egg-ci": "^1.8.0",
"egg-mock": "^3.16.0",
"egg-ts-helper": "^1.4.2",
"tslib": "^1.9.0",
"tslint": "^4.0.0",
"typescript": "^2.8.1"
},
"engines": {
"node": ">=8.9.0"
},
"ci": {
"version": "8"
},
"repository": {
"type": "git",
"url": ""
},
"eslintIgnore": [
"coverage"
],
"author": "",
"license": "MIT"
}