forked from RiseVision/rise-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.19 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.19 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
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "Rise-node",
"version": "1.0.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 --bail --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"
},
"author": "Rise Team, Lisk Foundation <admin@lisk.io>, lightcurve GmbH <admin@lightcurve.io>, Shift Team",
"license": "GPL-3.0",
"dependencies": {
"async-exit-hook": "^2.0.1",
"bignumber.js": "=6.0.0",
"body-parser": "=1.18.2",
"bytebuffer": "=5.0.1",
"change-case": "=3.0.2",
"circular-json": "=0.5.1",
"colors": "=1.2.1",
"commander": "=2.15.1",
"compression": "=1.7.2",
"cors": "=2.8.4",
"express": "=4.16.3",
"express-domain-middleware": "=0.1.0",
"express-rate-limit": "=2.11.0",
"extend": "=3.0.1",
"inversify": "=4.11.1",
"ip": "=1.1.5",
"is-empty": "^1.2.0",
"json-schema": "=0.2.3",
"json-sql": "LiskHQ/json-sql#27e1ed1",
"jsonpath": "^1.0.0",
"lodash": "=4.17.5",
"pg-monitor": "=0.7.1",
"pg-native": "^2.2.0",
"pg-promise": "=7.3.2",
"popsicle": "^9.1.0",
"promise-parallel-throttle": "^3.0.0",
"promise-retry": "^1.1.1",
"redis": "^2.8.0",
"routing-controllers": "=0.7.7",
"semver": "=5.5.0",
"shuffle-array": "^1.0.1",
"socket.io": "=2.0.4",
"sodium": "=2.0.3",
"source-map-support": "=0.5.4",
"strftime": "=0.10.0",
"uuid": "^3.1.0",
"z-schema": "=3.19.1"
},
"devDependencies": {
"@types/async": "=2.0.48",
"@types/bytebuffer": "=5.0.37",
"@types/chai": "^4.0.8",
"@types/chai-arrays": "^1.0.2",
"@types/chai-as-promised": "^7.1.0",
"@types/circular-json": "^0.4.0",
"@types/express": "^4.0.39",
"@types/express-rate-limit": "^2.9.1",
"@types/ip": "0.0.30",
"@types/jsonpath": "^0.2.0",
"@types/lodash": "=4.14.106",
"@types/mocha": "=5.0.0",
"@types/node": "^9.6.0",
"@types/redis": "=2.8.6",
"@types/semver": "^5.4.0",
"@types/shuffle-array": "0.0.28",
"@types/sinon": "=4.3.0",
"@types/socket.io": "=1.4.32",
"@types/strftime": "^0.9.2",
"@types/supertest": "^2.0.4",
"@types/uuid": "^3.4.3",
"@types/valid-url": "^1.0.2",
"@types/z-schema": "^3.16.31",
"browserify-bignum": "=1.3.0-2",
"chai": "=4.1.2",
"chai-arrays": "=2.0.0",
"chai-as-promised": "^7.1.1",
"coveralls": "=2.11.16",
"dpos-offline": "=1.3.5",
"mocha": "=5.0.5",
"moment": "=2.21.0",
"mute": "^2.0.6",
"nyc": "^11.6.0",
"proxyquire": "^2.0.0",
"reflect-metadata": "^0.1.10",
"shx": "^0.2.2",
"sinon": "=4.4.9",
"supertest": "=3.0.0",
"ts-node": "^5.0.1",
"tslint": "^5.8.0",
"typescript": "=2.6.2"
}
}