-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
35 lines (35 loc) · 891 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
{
"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": "nuxt",
"build": "nuxt build",
"prestart": "npm run build",
"start": "nuxt start"
},
"keywords": [],
"author": "wangshijun <[email protected]> (http://github.com/wangshijun)",
"license": "MIT",
"dependencies": {
"config": "^1.30.0",
"element-ui": "^2.4.0",
"fs-extra": "^6.0.1",
"nuxt": "^1.4.0",
"solc": "^0.4.24",
"truffle-hdwallet-provider": "0.0.3",
"web3": "1.0.0-beta.34"
},
"devDependencies": {
"babel-plugin-component": "^1.1.1",
"ganache-cli": "6.1.0",
"mocha": "^5.2.0",
"pm2": "^2.10.4"
}
}