-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
64 lines (64 loc) · 2.39 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
64
{
"name": "dao1901",
"version": "0.3.0",
"description": "Dao1901 is a dapp to manage a non-profit organization ruled by french law 1901",
"repository": {
"type": "git",
"url": "https://github.com/asseth/dao1901"
},
"scripts": {
"cleanCache": "node fuse clean-cache",
"compilebuild": "npm run compile && node fuse",
"compile": "cd customModules/protocol/customDeploy && python3.5 compile.py ../contracts/Owned.sol && python3.5 compile.py ../contracts/Dao1901Members.sol && python3.5 compile.py ../contracts/Dao1901Votes.sol",
"dev": "npm run cleanCache && NETWORK=testrpc node fuse",
"devTestrpc": "NETWORK=testrpc npm run dev",
"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 truffle test *.js"
},
"author": "Mathieu Sornay, Stéphane Roche <[email protected]>, Alexandre Kurth",
"license": "MIT",
"devDependencies": {
"@types/jest": "^20.0.6",
"@types/node": "^8.0.18",
"@types/react-redux": "^5.0.0",
"@types/redux": "^3.6.0",
"bip39": "^2.3.1",
"classnames": "^2.2.5",
"dotenv": "^4.0.0",
"ethereumjs-wallet": "^0.6.0",
"fuse-box": "^2.2.2-beta.11",
"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.6.0",
"react-dom": "^15.6.1",
"react-fa": "^4.2.0",
"react-redux": "^5.0.5",
"react-redux-toastr": "^6.2.7",
"react-router-dom": "^4.1.2",
"react-router-redux": "^5.0.0-alpha.6",
"react-transition-group": "^1.2.0",
"reactstrap": "^4.8.0",
"redux": "^3.7.1",
"redux-devtools": "^3.4.0",
"redux-devtools-dock-monitor": "^1.1.2",
"redux-devtools-log-monitor": "^1.3.0",
"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.27",
"web3": "^0.20.1",
"web3-provider-engine": "^13.2.9"
}
}