-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #378 from wavesplatform/release/v0.36.0
Release/v0.36.0
- Loading branch information
Showing
8 changed files
with
87 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,20 @@ | ||
{ | ||
"name": "data-service", | ||
"version": "0.35.0", | ||
"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": "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", | ||
"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", | ||
"dev": "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", | ||
"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:is": "export $(cat variables.stage.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": { | ||
|
@@ -37,7 +30,6 @@ | |
"@types/ramda": "^0.25.43", | ||
"eslint": "^5.15.1", | ||
"jest": "^24.5.0", | ||
"nodemon": "^1.18.8", | ||
"pg-monitor": "^1.3.1", | ||
"ts-jest": "^23.10.5", | ||
"ts-node": "^7.0.1", | ||
|
@@ -61,6 +53,7 @@ | |
"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", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters