-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
38 lines (38 loc) · 1001 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
35
36
37
38
{
"name": "ethereum-contract-workflow",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "node scripts/compile.js",
"pretest": "npm run compile",
"test": "mocha tests/",
"predeploy": "npm run test",
"deploy": "node scripts/deploy.js",
"dev": "node server.js",
"build": "next build",
"prestart": "npm run build",
"start": "pm2 restart pm2.json"
},
"keywords": [],
"author": "wangshijun <[email protected]> (http://github.com/wangshijun)",
"license": "MIT",
"dependencies": {
"@material-ui/core": "^1.1.0",
"config": "^1.30.0",
"fs-extra": "^6.0.1",
"human-standard-token-abi": "^1.0.2",
"next": "^6.0.3",
"next-routes": "^1.4.2",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"solc": "^0.4.24",
"truffle-hdwallet-provider": "0.0.3",
"web3": "1.0.0-beta.34"
},
"devDependencies": {
"ganache-cli": "6.1.0",
"mocha": "^5.2.0",
"pm2": "^2.10.4"
}
}