-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.18 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
{
"name": "scrupl",
"version": "1.0.0",
"repository": "https://github.com/scrupl/scrupl",
"license": "MIT",
"scripts": {
"postinstall": "sh scripts/postinstall.sh",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"start:blockchain": "ganache-cli --acctKeys ./accounts.json",
"start:trufflepig": "trufflepig --ganacheKeyFile ./accounts.json",
"contracts:compile": "truffle compile",
"contracts:migrate": "truffle migrate",
"contracts:test": "truffle test"
},
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"@colony/colony-js-contract-loader-http": "^1.10.0",
"node-sass": "^4.9.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"truffle-contract": "^4.0.12",
"web3": "1.0.0-beta.37"
},
"devDependencies": {
"ganache-cli": "^6.4.3",
"openzeppelin-solidity": "^2.2.0",
"react-scripts": "2.1.8",
"truffle": "^5.0.13",
"trufflepig": "^1.1.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}