forked from input-output-hk/project-icarus-backend-service
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
77 lines (77 loc) · 2.64 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
73
74
75
76
77
{
"name": "icarus-poc-backend-service",
"version": "0.4.0",
"description": "Icarus backend service that will allow wallet users to access blockchain data",
"main": "./src/index.js",
"scripts": {
"flow": "flow",
"build": "rm -rf build/ && babel ./src/ --out-dir ./build/",
"start": "NODE_ENV=production node ./build/index.js | bunyan",
"dev": "yarn build && export NODE_ENV=develop && nodemon ./build/index.js | bunyan",
"eslint": "eslint ./src",
"load-test-db": "node ./scripts/test/load_test_db.js",
"clean-test-db": "node ./scripts/test/clean_test_db.js",
"transpile-tests": "babel ./test/ --out-dir ./build-test/",
"unit-tests": "yarn build && yarn transpile-tests && mocha \"build-test/unit/**/*.js\"",
"integration-tests": "yarn transpile-tests && NODE_ENV=test yarn load-test-db && NODE_ENV=test mocha \"build-test/integration/**/*.js\"",
"all-tests": "yarn unit-tests && yarn integration-tests",
"coverage": "yarn all-tests",
"postintegration-tests": "NODE_ENV=test yarn clean-test-db"
},
"repository": {
"type": "git",
"url": "git+https://github.com/input-output-hk/icaraus-poc-backend-service.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/input-output-hk/icaraus-poc-backend-service/issues"
},
"homepage": "https://github.com/input-output-hk/icaraus-poc-backend-service#readme",
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.2.2",
"@babel/parser": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.2.0",
"@slack/client": "^4.8.0",
"axios": "0.18.0",
"big.js": "^5.2.2",
"bunyan": "1.8.12",
"cardano-crypto.js": "^4.2.1",
"chai": "4.1.2",
"config": "1.30.0",
"delay": "^4.1.0",
"dotenv": "^6.1.0",
"hippie": "0.5.2",
"lodash": "4.17.10",
"moment": "2.22.1",
"pg": "7.4.1",
"restify": "^7.6.0",
"restify-bunyan-logger": "2.0.7",
"restify-cors-middleware": "^1.1.1",
"restify-errors": "6.1.0",
"shuffle-array": "1.0.1",
"source-map-support": "^0.5.13",
"ws": "5.2.0"
},
"devDependencies": {
"babel-eslint": "8.2.3",
"chai-as-promised": "7.1.1",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-flowtype": "2.48.0",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-mocha": "5.0.0",
"flow-bin": "^0.105.2",
"mocha": "5.2.0",
"nodemon": "1.17.5",
"nyc": "12.0.1",
"sinon": "5.0.10"
}
}