-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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
{
"name": "XinFinScan",
"private": false,
"version": "3.0.0",
"description": "A lightweight XinFinScan block explorer",
"repository": "",
"license": "MIT",
"scripts": {
"start": "pm2 start app.js --name XinFinScan && pm2 start tools/sync.js --node-args='--max-old-space-size=10001' --name Sync",
"dev": "concurrently \"nodemon tools/sync.js \" \"nodemon app.js\" ",
"grabber": " pm2 start tools/grabber.js -i 4",
"sync": " pm2 start tools/sync.js --node-args='--max-old-space-size=2048'",
"pretest": "copyfiles app.js app/ ",
"test": "./node_modules/.bin/mocha --reporter spec "
},
"dependencies": {
"abi-decoder": "^1.1.0",
"axios": "^0.19.2",
"bignumber.js": "^5.0.0",
"body-parser": "^1.12.2",
"chart.js": "^2.7.2",
"compression": "^1.7.4",
"concurrently": "^3.5.1",
"ejs": "~2.5.7",
"ethereumjs-tx": "^1.3.4",
"express": "^4.16.0",
"form-data": "^4.0.0",
"json2csv": "^5.0.6",
"mongoose": "^4.13.8",
"morgan": "^1.9.0",
"node-fetch": "^2.6.0",
"nodemon": "^1.18.10",
"rlp": "^2.0.0",
"serve-favicon": "~2.4.5",
"socket.io": "^2.0.4",
"solc": "^0.4.19",
"ws": "^7.2.1",
"xdc3": "^1.2.1211",
"xdc3-old": "npm:xdc3@^0.20.8"
},
"devDependencies": {
"chai": "^4.1.2",
"copyfiles": "^1.2.0",
"ethereumjs-testrpc": "^6.0.3",
"mocha": "^4.1.0",
"request": "^2.83.0"
}
}