-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
63 lines (63 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
{
"name": "data-service",
"version": "0.36.0",
"description": "Waves data service",
"main": "src/index.js",
"repository": "[email protected]:wavesplatform/data-service.git",
"author": "Dmitry Shuranov <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rm -rf dist/ && tsc",
"start": "NODE_PG_FORCE_NATIVE=1 node dist/index.js",
"dev": "NODE_PG_FORCE_NATIVE=1 NODE_ENV=development LOG_LEVEL=debug node dist/index.js",
"candles": "NODE_PG_FORCE_NATIVE=1 node dist/daemons/candles/index.js",
"pairs": "NODE_PG_FORCE_NATIVE=1 node dist/daemons/pairs/index.js",
"lint": "eslint src",
"test": "jest --runInBand --detectOpenHandles --config=config/jest.config.unit.json",
"test:i": "export $(cat variables.env | xargs) && jest --runInBand --detectOpenHandles --config=config/jest.config.integration.json",
"test:it": "export $(cat variables.testnet.env | xargs) && jest --runInBand --detectOpenHandles --config=config/jest.config.integration.testnet.json"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"@types/joi": "^14.3.2",
"@types/knex": "^0.16.1",
"@types/koa": "^2.0.47",
"@types/koa-bodyparser": "^4.2.1",
"@types/koa-router": "^7.0.42",
"@types/lru-cache": "^5.1.0",
"@types/node": "^10.14.18",
"@types/qs": "^6.9.0",
"@types/ramda": "^0.25.43",
"eslint": "^5.15.1",
"jest": "^24.5.0",
"pg-monitor": "^1.3.1",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"typescript": "^3.7.4"
},
"dependencies": {
"@koa/cors": "^2.2.3",
"@waves/assets-pairs-order": "^4.0.0",
"@waves/data-entities": "^1.8.0",
"@waves/parse-json-bignumber": "^1.0.3",
"chalk": "^2.3.2",
"check-env": "^1.3.0",
"folktale": "^2.3.2",
"joi": "^13.2.0",
"json-colorizer": "^1.1.1",
"knex": "^0.16.5",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.1",
"koa-compose": "^4.1.0",
"koa-requestid": "^2.0.1",
"koa-router": "^7.4.0",
"lru-cache": "^5.1.1",
"merge-descriptors": "^1.0.1",
"pg-native": "^3.0.1",
"pg-promise": "^8.2.3",
"qs": "^6.5.2",
"ramda": "^0.25.0",
"ramda-adjunct": "^2.6.0",
"winston": "^3.0.0-rc4"
}
}