forked from JoinColony/colonySDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.04 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
{
"name": "@colony/colony-example",
"version": "1.0.0-beta.4",
"description": "A simple example project built with Colony",
"keywords": [
"colony",
"example"
],
"license": "MIT",
"files": [
"/",
".gitignore"
],
"scripts": {
"start-ganache": "colony service start-ganache",
"deploy-contracts": "colony service deploy-contracts",
"start-trufflepig": "colony service start-trufflepig",
"start": "node src/index",
"goerli": "node src/goerli",
"test": "jest"
},
"dependencies": {
"@colony/colony-cli": "^1.0.0-beta.7",
"@colony/colony-js-client": "^1.13.2",
"@colony/colony-js-contract-loader-http": "^1.12.0",
"@colony/purser-software": "^1.2.6",
"buffer": "^5.2.1",
"chalk": "^2.4.2",
"ipfs": "^0.36.4",
"web3": "^1.0.0-beta.55",
"web3-utils": "^1.0.0-beta.55"
},
"devDependencies": {
"jest": "^24.8.0"
},
"resolutions": {
"web3": "^1.0.0-beta.55"
},
"engines": {
"node": ">=10.13.0 <12.0.0"
},
"publishConfig": {
"access": "public"
}
}