-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.29 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "dapp-boilerplate",
"version": "0.0.1",
"description": "Dapp boilerplate",
"scripts": {
"cleanCache": "node fuse clean-cache",
"dev": "npm run cleanCache && NETWORK=testrpc node fuse",
"devTestnet": "NETWORK=testnet npm run dev",
"migrate": "cd customModules/protocol && NETWORK=testrpc truffle migrate",
"migrateTestnet": "cd customModules/protocol && NETWORK=testnet truffle migrate --network kovan",
"prod": "npm run cleanCache && NODE_ENV=production node fuse",
"testUI": "NETWORK=testrpc jest",
"testProtocol": "cd customModules/protocol/test && tsc && cd ../build/tests/test && NETWORK=testrpc TEST=true truffle test *.js",
"testProtocol1": "cd customModules/protocol/test && tsc && cd ../build/tests/test && NETWORK=testrpc TEST=true truffle test",
"testProtocolTestnet": "cd customModules/protocol/test && tsc && cd ../build/tests/test && NETWORK=testnet TEST=true truffle test *.js --network kovan",
"testProtocolTestnet1": "cd customModules/protocol/test && tsc && cd ../build/tests/test && NETWORK=testnet TEST=true truffle test --network kovan"
},
"author": "Stéphane Roche <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^20.0.8",
"@types/node": "^8.0.47",
"@types/react-redux": "^5.0.11",
"@types/redux": "^3.6.31",
"bip39": "^2.4.0",
"classnames": "^2.2.5",
"dotenv": "^4.0.0",
"ethereumjs-wallet": "^0.6.0",
"fuse-box": "^2.3.4-beta.14",
"jest": "^20.0.4",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^10.0.0",
"postcss-modules": "^0.8.0",
"react": "^15.6.2",
"react-css-modules": "^4.7.1",
"react-dom": "^15.6.2",
"react-fa": "^4.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.8",
"react-test-renderer": "^15.6.2",
"react-transition-group": "^2.2.1",
"reactstrap": "^4.8.0",
"redux": "^3.7.1",
"redux-form": "^6.8.0",
"redux-logger": "^3.0.6",
"redux-saga": "^0.15.6",
"truffle-artifactor": "^3.0.0",
"ts-jest": "^20.0.14",
"tslib": "^1.8.0",
"typescript": "^2.5.3",
"uglify-js": "^3.1.5",
"web3": "^1.0.0-beta.24",
"web3-provider-engine": "^13.3.3",
"zeppelin-solidity": "1.3.0"
},
"engines": {
"node": "8.6.0"
}
}