forked from ethereumclassic/explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 888 Bytes
/
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
{
"name": "EthereumClassicExplorer",
"private": false,
"version": "0.2.0",
"description": "A lightweight ethereum classic block explorer",
"repository": "https://github.com/ethereumproject/explorer",
"license": "MIT",
"scripts": {
"start": "concurrently \"node tools/sync.js \" \"node app.js\" ",
"pretest": "copyfiles app.js app/ ",
"test": "mocha --exit"
},
"dependencies": {
"bignumber.js": "^5.0.0",
"body-parser": "^1.12.2",
"concurrently": "^3.5.1",
"ejs": "~2.5.7",
"express": "^4.16.0",
"mongoose": "^4.10.8",
"morgan": "^1.9.0",
"rlp": "^2.0.0",
"serve-favicon": "~2.4.5",
"socket.io": "^2.0.4",
"solc": "^0.4.19",
"web3": "~0.19.0"
},
"devDependencies": {
"chai": "^4.1.2",
"copyfiles": "^1.2.0",
"ethereumjs-testrpc": "^6.0.3",
"mocha": "^4.1.0",
"request": "^2.83.0"
}
}