forked from wavesplatform/data-service
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 3.54 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
{
"name": "data-service",
"version": "0.28.3",
"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": "export $(cat variables.env | xargs) && NODE_ENV=production node dist/index.js",
"candles": "export $(cat variables.env | xargs) && NODE_ENV=production node dist/daemons/candles/index.js",
"dev:candles": "export $(cat variables.stage.env | xargs) && NODE_ENV=development LOG_LEVEL=debug nodemon --inspect dist/daemons/candles/index.js",
"dev:candles:t": "export $(cat variables.testnet.env | xargs) && NODE_ENV=development LOG_LEVEL=debug nodemon --inspect dist/daemons/candles/index.js",
"pairs": "export $(cat variables.env | xargs) && NODE_ENV=production node dist/daemons/pairs/index.js",
"dev:pairs": "export $(cat variables.stage.env | xargs) && NODE_ENV=development LOG_LEVEL=debug nodemon --inspect dist/daemons/pairs/index.js",
"dev:pairs:t": "export $(cat variables.testnet.env | xargs) && NODE_ENV=development LOG_LEVEL=debug nodemon --inspect dist/daemons/pairs/index.js",
"lint": "eslint src",
"dev": "export $(cat variables.stage.env | xargs) && NODE_ENV=development LOG_LEVEL=debug nodemon --inspect dist/index.js",
"dev:t": "export $(cat variables.testnet.env | xargs) && NODE_ENV=development LOG_LEVEL=debug nodemon --inspect dist/index.js",
"test": "npm run test:u && npm run test:i",
"test:t": "npm run test:u && npm run test:it",
"test:u": "jest --runInBand --detectOpenHandles --config=config/jest.config.unit.json --reporters=jest-junit",
"test:i": "export $(cat variables.env | xargs) && jest --runInBand --detectOpenHandles --config=config/jest.config.integration.json --reporters=jest-junit",
"test:is": "export $(cat variables.stage.env | xargs) && jest --runInBand --detectOpenHandles --config=config/jest.config.integration.json --reporters=jest-junit",
"test:isn": "export $(cat variables.stagenet.env | xargs) && jest --runInBand --detectOpenHandles --config=config/jest.config.integration.json --reporters=jest-junit",
"test:it": "export $(cat variables.testnet.env | xargs) && jest --runInBand --detectOpenHandles --config=config/jest.config.integration.testnet.json --reporters=jest-junit"
},
"devDependencies": {
"@types/jest": "^23.3.14",
"@types/joi": "^14.3.4",
"@types/knex": "^0.15.2",
"@types/koa": "^2.11.0",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-router": "^7.4.0",
"@types/lru-cache": "^5.1.0",
"@types/node": "^10.17.14",
"@types/ramda": "^0.25.51",
"eslint": "^5.16.0",
"jest": "^24.9.0",
"jest-junit": "^10.0.0",
"nodemon": "^1.19.4",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"typescript": "^3.6.3"
},
"dependencies": {
"@koa/cors": "^2.2.3",
"@turtlenetwork/assets-pairs-order": "^4.0.2",
"@turtlenetwork/bignumber": "0.0.2",
"@turtlenetwork/data-entities": "^8.0.2",
"@waves/parse-json-bignumber": "^1.0.1",
"chalk": "^2.4.2",
"check-env": "^1.3.0",
"folktale": "^2.3.2",
"joi": "^13.7.0",
"json-colorizer": "^1.1.1",
"knex": "^0.14.6",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-compose": "^4.1.0",
"koa-requestid": "^2.1.0",
"koa-router": "^7.4.0",
"lru-cache": "^5.1.1",
"merge-descriptors": "^1.0.1",
"pg-promise": "^8.7.5",
"qs": "^6.9.1",
"ramda": "^0.25.0",
"ramda-adjunct": "^2.25.0",
"winston": "^3.2.1"
}
}