-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.36 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.36 KB
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
83
84
85
86
{
"name": "xxx_server",
"version": "1.0.0",
"description": "xxx server",
"scripts": {
"build": "tsc",
"start": "node dist/api.js",
"debug": "export NODE_ENV=development && npm run build && npm run start",
"test": "mocha './dist/**/*.test.js'",
"prettier": "prettier --write \"src/**/*.ts\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/amqplib": "^0.5.13",
"@types/bluebird": "^3.5.28",
"@types/inflation": "^2.0.0",
"@types/koa": "^2.0.51",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.0.42",
"@types/koa-send": "^4.1.2",
"@types/koa-session": "^5.10.1",
"@types/koa-static": "^4.0.1",
"@types/koa2-cors": "^2.0.1",
"@types/lodash": "^4.14.144",
"@types/module-alias": "^2.0.0",
"@types/node": "^12.12.5",
"@types/node-cron": "^2.0.3",
"@types/node-forge": "^0.9.0",
"@types/redis": "^2.8.16",
"@types/type-is": "^1.6.3",
"@types/urlencode": "^1.1.2",
"@types/uuid": "^3.4.6",
"@types/validator": "^10.11.3",
"concurrently": "^5.0.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
},
"dependencies": {
"amqplib": "^0.6.0",
"axios": "^0.21.1",
"crypto-random-string": "^3.3.0",
"dotenv": "^8.2.0",
"joi": "^17.3.0",
"koa": "^2.11.0",
"koa-body": "^4.1.1",
"koa-logger": "^3.2.1",
"koa-router": "^7.4.0",
"koa-send": "^5.0.0",
"koa-session": "^5.12.3",
"koa-static": "^5.0.0",
"koa2-cors": "^2.0.6",
"lodash": "^4.17.15",
"module-alias": "^2.2.2",
"moment": "^2.24.0",
"mysql2": "^2.0.0",
"node-cron": "^2.0.3",
"node-forge": "^0.9.1",
"number-precision": "^1.5.0",
"raw-body": "^2.4.1",
"redis": "^3.0.2",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.2",
"sequelize-typescript": "^1.0.0",
"speakeasy": "^2.0.0",
"svg-captcha": "^1.4.0",
"type-is": "^1.6.18",
"urlencode": "^1.1.0",
"uuid": "^3.3.3",
"winston": "^3.2.1",
"winston-rsyslog": "0.0.2"
},
"_moduleAliases": {
"@store": "dist/store",
"@common": "dist/common",
"@controller": "dist/controller",
"@service": "dist/service",
"@middlewares": "dist/middlewares",
"@lib": "dist/lib",
"@config": "dist/config",
"@models": "dist/models",
"@routes": "dist/routes",
"@helpers": "dist/helpers"
}
}