forked from wavesplatform/data-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.71 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
{
"name": "data-service",
"version": "0.8.0",
"description": "Local data service",
"main": "src/index.js",
"repository": "git@github.com:localwaves/data-service.git",
"author": "Dmitry Shuranov <dvshur@gmail.com>",
"license": "MIT",
"scripts": {
"start": "export $(cat variables.env | xargs) && nodemon index.js",
"lint": "eslint src",
"dev": "export $(cat variables.env | xargs) && NODE_ENV=development LOG_LEVEL=debug nodemon --inspect",
"dev:t": "export $(cat variables.testnet.env | xargs) && NODE_ENV=development LOG_LEVEL=debug nodemon --inspect",
"test": "yarn test:u && yarn test:i",
"test:t": "yarn test:u && yarn test:it",
"test:u": "jest --config=config/jest.config.unit.json",
"test:i": "export $(cat variables.stage.env | xargs) && jest --config=config/jest.config.integration.json",
"test:it": "export $(cat variables.testnet.env | xargs) && jest --config=config/jest.config.integration.testnet.json"
},
"devDependencies": {
"eslint": "^4.19.1",
"jest": "^22.4.3",
"nodemon": "^1.17.5"
},
"dependencies": {
"@koa/cors": "^2.2.1",
"@local/data-entities": "^1.1.0",
"@local/json-bigint": "git+https://github.com/wavesplatform/json-bigint.git",
"bignumber.js": "^7.0.1",
"chalk": "^2.3.2",
"check-env": "^1.3.0",
"folktale": "^2.1.0",
"joi": "^13.2.0",
"json-colorizer": "^1.1.1",
"knex": "^0.14.6",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.1",
"koa-compose": "^4.1.0",
"koa-qs": "^2.0.0",
"koa-requestid": "^2.0.1",
"koa-router": "^7.4.0",
"pg-promise": "^8.2.3",
"qs": "^6.5.2",
"ramda": "^0.25.0",
"ramda-adjunct": "^2.6.0",
"redis": "^2.8.0",
"winston": "^3.0.0-rc4"
}
}