forked from RiseVision/rise-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.55 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
{
"name": "Rise-node",
"version": "1.2.0",
"private": true,
"scripts": {
"start": "node app.js",
"test-integration": "NODE_ENV=test mocha --bail --exit --require ts-node/register './tests/integration/**/*.spec.ts'",
"test-unit": "mocha --exit --require ts-node/register './tests/unit/**/*.spec.ts'",
"test-all": "NODE_ENV=test mocha --bail --exit --require ts-node/register './tests/unit/**/*.spec.ts' './tests/integration/**/*.spec.ts'",
"transpile": "shx rm -rf dist; tsc",
"test-cover-unit": "nyc -e '.ts' -x 'tests/**' -r lcov npm run test-unit && cat ./coverage/lcov.info | coveralls",
"test-cover-all": "nyc -e '.ts' -x 'tests/**' -r lcov npm run test-all && cat ./coverage/lcov.info | coveralls",
"static-analysis": "tslint --force --project ./tsconfig.json 'src/**/*.ts'"
},
"author": "Rise Team, Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>, Shift Team",
"license": "GPL-3.0",
"dependencies": {
"async-exit-hook": "^2.0.1",
"bignumber.js": "=7.2.1",
"binary-search": "^1.3.4",
"body-parser": "=1.18.3",
"bytebuffer": "=5.0.1",
"change-case": "=3.0.2",
"circular-json": "=0.5.5",
"cls-hooked": "^4.2.2",
"colors": "=1.3.1",
"commander": "=2.16.0",
"compression": "=1.7.3",
"cors": "=2.8.4",
"express": "=4.16.3",
"express-domain-middleware": "=0.1.0",
"express-rate-limit": "=2.11.0",
"extend": "=3.0.2",
"filter-object": "^3.0.0",
"inversify": "=4.13.0",
"ip": "=1.1.5",
"is-empty": "^1.2.0",
"js-flock": "^3.5.3",
"json-schema": "=0.2.3",
"jsonpath": "^1.0.0",
"lodash": "=4.17.10",
"long": "^4.0.0",
"pg-native": "^3.0.0",
"pg-promise": "=7.3.2",
"popsicle": "=10.0.1",
"promise-parallel-throttle": "^3.0.0",
"promise-retry": "^1.1.1",
"protobufjs": "^6.8.6",
"redis": "^2.8.0",
"routing-controllers": "=0.7.7",
"semver": "=5.5.0",
"sequelize": "=4.38.0",
"sequelize-typescript": "=0.6.5",
"shuffle-array": "^1.0.1",
"socket.io": "=2.1.1",
"sodium": "=2.0.3",
"source-map-support": "=0.5.6",
"squel": "=5.12.2",
"strftime": "=0.10.0",
"traverse": "^0.6.6",
"uuid": "=3.3.2",
"z-schema": "=3.22.0"
},
"devDependencies": {
"@types/bytebuffer": "=5.0.37",
"@types/chai": "=4.1.4",
"@types/chai-arrays": "^1.0.2",
"@types/chai-as-promised": "^7.1.0",
"@types/circular-json": "^0.4.0",
"@types/express": "=4.16.0",
"@types/express-rate-limit": "^2.9.1",
"@types/ip": "=0.0.31",
"@types/jsonpath": "^0.2.0",
"@types/lodash": "=4.14.115",
"@types/mocha": "=5.2.5",
"@types/node": "^9.6.0",
"@types/redis": "=2.8.6",
"@types/semver": "^5.4.0",
"@types/shuffle-array": "0.0.28",
"@types/sinon": "=5.0.1",
"@types/socket.io": "=1.4.36",
"@types/strftime": "^0.9.2",
"@types/supertest": "=2.0.5",
"@types/uuid": "^3.4.3",
"@types/valid-url": "^1.0.2",
"@types/z-schema": "^3.16.31",
"axios": "^0.18.0",
"browserify-bignum": "=1.3.0-2",
"chai": "=4.1.2",
"chai-arrays": "=2.0.0",
"chai-as-promised": "^7.1.1",
"chai-sorted": "^0.2.0",
"coveralls": "=3.0.2",
"dpos-api-wrapper": "^1.3.2",
"dpos-offline": "=1.6.1",
"mocha": "=5.2.0",
"moment": "=2.22.2",
"mute": "^2.0.6",
"nyc": "=12.0.2",
"proxyquire": "^2.0.0",
"reflect-metadata": "^0.1.10",
"shx": "=0.3.2",
"sinon": "=6.1.4",
"supertest": "=3.1.0",
"ts-node": "=7.0.0",
"tslint": "=5.11.0",
"tslint-sonarts": "=1.7.0",
"typescript": "=2.8.3"
}
}