-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 876 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": "smart-contracts-scaffolding",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"chalk": "^2.3.2",
"fs-extra": "^5.0.0",
"ganache-cli": "^6.1.0",
"jest": "^22.4.3",
"solium": "^1.1.6"
},
"dependencies": {
"abi-decoder": "^1.1.0",
"bs58": "^4.0.1",
"ipfs": "^0.28.2",
"lodash": "^4.17.5",
"next": "^5.1.0",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"styled-components": "^3.2.6",
"sulk": "0.0.7",
"web3": "^1.0.0-beta.33"
},
"scripts": {
"dev": "next",
"build": "next build",
"production": "next build && next start",
"blockchain": "ganache-cli",
"compile": "sulk --config ./config/sulk.config.js",
"deploy": "node scripts/deploy-contracts.js --config ./config/contracts.deploy.config.js --rpc development",
"test": "jest"
}
}