This repository has been archived by the owner on Dec 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
70 lines (70 loc) · 2.19 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
{
"name": "idexd",
"version": "0.1.4",
"description": "Staking software for the IDEX token",
"main": "lib/shared.js",
"scripts": {
"prepublish": "babel server -d lib",
"build": "babel server -d lib",
"start": "pm2 start pm2.config.js --only app",
"worker": "pm2 start pm2.config.js --only worker",
"dev": "babel-node ./server/index.js",
"integration-tests": "NODE_ENV=test PORT=8888 DB_NAME=staking_coordinator_test mocha --exit --require @babel/register --require @babel/polyfill --recursive test/integration --timeout 60000",
"integration-tests:watch": "NODE_ENV=test PORT=8888 DB_NAME=staking_coordinator_test mocha --watch --require @babel/register --require @babel/polyfill --recursive test/integration --timeout 10000"
},
"author": "",
"repository": "github:idexio/idexd",
"license": "LGPL-v3",
"homepage": "https://github.com/idexio/idexd",
"bugs": "https://github.com/idexio/idexd/issues",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@sentry/node": "^4.4.1",
"aws-sdk": "^2.410.0",
"bluebird": "^3.5.2",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"continuation-local-storage": "^3.2.1",
"convict": "^4.4.0",
"cors": "^2.8.5",
"dd-trace": "^0.7.1",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"mysql2": "^1.6.1",
"redis": "^2.8.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"require-all": "^3.0.0",
"sequelize": "^4.40.0",
"typedarray-to-buffer": "^3.1.5",
"web3": "1.0.0-beta.36",
"websocket": "^1.0.28",
"write-file-atomic": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-promise": "^4.0.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.6",
"sequelize-cli": "^5.3.0",
"toxiproxy-node-client": "^2.0.6"
},
"engines": {
"node": ">=10.0.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}