-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.37 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
61
62
63
{
"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": "NODE_ENV=production node fuse prod",
"postinstall": "npm run prod",
"start": "cd build && node server.js",
"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 <rstephane@protonmail.com>",
"license": "MIT",
"dependencies": {
"@types/jest": "^20.0.7",
"@types/node": "^8.0.24",
"@types/react-redux": "^5.0.4",
"bip39": "^2.4.0",
"classnames": "^2.2.5",
"dotenv": "^4.0.0",
"ethereumjs-wallet": "^0.6.0",
"fuse-box": "^2.2.2",
"immutability-helper": "^2.3.1",
"jest": "^20.0.4",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^10.0.0",
"postcss-modules": "^0.8.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-css-modules": "^4.7.1",
"react-dom": "^15.6.1",
"react-fa": "^4.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.1.2",
"react-router-redux": "^5.0.0-alpha.6",
"react-test-renderer": "^15.6.1",
"react-transition-group": "^2.2.0",
"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": "^2.1.5",
"ts-jest": "^20.0.9",
"tslib": "^1.7.1",
"typescript": "^2.4.2",
"uglify-js": "^3.0.28",
"web3": "^0.20.1",
"web3-provider-engine": "^13.2.9",
"zeppelin-solidity": "^1.2.0"
},
"engines": {
"node": "8.2.1"
}
}