forked from JoinColony/colonySDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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": "@colony/colony-starter-react",
"version": "1.0.0-beta.8",
"description": "A simple starter project for building with Colony",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10.12.0"
},
"files": ["/", ".gitignore"],
"scripts": {
"start-ganache": "colony service start-ganache",
"deploy-contracts": "colony service deploy-contracts",
"start-trufflepig": "colony service start-trufflepig",
"seed-network": "colony service seed-network",
"colony-setup": "node scripts/colonySetup.js",
"build": "react-scripts build",
"start": "react-scripts start",
"test": "react-scripts test --coverage --updateSnapshot",
"eject": "react-scripts eject"
},
"dependencies": {
"@colony/colony-cli": "^1.0.0-beta.0",
"@colony/colony-js-client": "^1.11.2",
"@colony/colony-js-contract-loader-http": "^1.10.0",
"@colony/purser-metamask": "^2.2.0",
"@colony/purser-software": "^1.2.4",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"devDependencies": {
"node-sass": "^4.9.0",
"react-scripts": "^2.1.8",
"react-test-renderer": "^16.8.6"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}