-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.42 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "xxx_server",
"version": "1.0.0",
"description": "xxx server",
"scripts": {
"build": "npm run compile && npm run copy",
"compile": "tsc",
"copy-docker": "cp -r /workdir/src/projects/ /workdir/dist/",
"copy": "cp -r ./src/projects ./dist",
"start": "node dist/projects/app/main.js",
"debug": "export NODE_ENV=development && npm run build && npm run start",
"test": "mocha './dist/**/*.test.js'",
"prettier": "prettier --write \"src/**/*.ts\"",
"app": "node dist/projects/app/main.js",
"app-debug": "node --inspect=0.0.0.0:9229 --inspect-brk dist/projects/app/main.js",
"initdb": "node dist/projects/app/initdb.js",
"initdb-debug": "node --inspect=0.0.0.0:9229 --inspect-brk dist/projects/app/initdb.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/amqplib": "^0.5.13",
"@types/bluebird": "^3.5.28",
"@types/elliptic": "^6.4.12",
"@types/fs-extra": "^9.0.13",
"@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",
"@types/ws": "^7.4.6",
"concurrently": "^5.0.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.1",
"typescript": "^3.9.10"
},
"dependencies": {
"amqplib": "^0.6.0",
"async-mqtt": "^2.6.1",
"axios": "^0.21.1",
"crypto-random-string": "^3.3.0",
"dotenv": "^8.2.0",
"eip55": "^2.1.0",
"elliptic": "^6.5.4",
"ethereum-cryptography": "^0.1.3",
"ethereum-private-key-to-address": "0.0.7",
"ethereum-public-key-to-address": "0.0.5",
"ethereumjs-util": "^7.0.10",
"ethers": "^5.6.2",
"fs-extra": "^10.0.1",
"geojson-places": "^1.0.3",
"h3-js": "^3.7.2",
"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",
"merkle-distrib": "0.0.2",
"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",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"protobufjs": "^6.11.2",
"raw-body": "^2.4.1",
"redis": "^3.0.2",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.2",
"sequelize-typescript": "^1.0.0",
"sha3": "^2.1.4",
"speakeasy": "^2.0.0",
"svg-captcha": "^1.4.0",
"type-is": "^1.6.18",
"urlencode": "^1.1.0",
"uuid": "^3.3.3",
"web3": "^1.3.6",
"winston": "^3.2.1",
"winston-rsyslog": "0.0.2",
"ws": "^7.5.3",
"yaml": "^1.10.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"
}
}