-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.4 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.4 KB
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
{
"name": "sovryn-node",
"private": true,
"version": "1.0.0",
"description": "liquidation handler and rollover of open positions for sovryn smart contracts",
"scripts": {
"test-lx": "mocha -r esm ./tests/test_liquidations.js --timeout 2500000",
"test-network": "node -r esm ./tests/network.js",
"start:test": "pm2 start start.js --node-args=\"-r esm\" -- testnet",
"start:main": "pm2 start start.js --node-args=\"-r esm\" -- mainnet",
"dev:test": "nodemon -r esm start.js testnet",
"dev:main": "nodemon -r esm start.js mainnet",
"dev": "npx webpack-dev-server --open --config ./public/webpack.config.ts",
"build-client": "npx webpack --config ./public/webpack.config.ts",
"approveWalletsMain": "node -r esm ./util/approval.js mainnet",
"approveWalletsTest": "node -r esm ./util/approval.js testnet"
},
"author": "",
"license": "ISC",
"dependencies": {
"abi-decoder": "^2.3.0",
"async-mutex": "^0.3.2",
"axios": "^0.20.0",
"copy-webpack-plugin": "6.2.1",
"css-loader": "^5.2.0",
"esm": "^3.2.25",
"lodash": "^4.17.20",
"mocha": "^10.2.0",
"socket.io": "^2.3.0",
"sqlite3": "^5.0.0",
"style-loader": "^2.0.0",
"telegraf": "^3.38.0",
"web3": "1.3.3",
"webpack-dev-server": "^3.11.2"
},
"devDependencies": {
"ts-node": "^10.4.0",
"typescript": "^4.7.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}