forked from JoinColony/colonySDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.27 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.27 KB
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
{
"name": "@colony/hackathon-starter-aba",
"version": "1.0.0",
"description": "Augmented Basketball Association Project for the colony hackathon",
"main": "src/index.js",
"scripts": {
"postinstall": "git submodule update --init --recursive && cd src/lib/colonyNetwork && yarn",
"deploy-contracts": "cd src/lib/colonyNetwork && ./node_modules/.bin/truffle migrate --compile-all --reset",
"start-ganache": "cd src/lib/colonyNetwork && ganache-cli -d --gasLimit 7000000 --acctKeys ganache-accounts.json --noVMErrorsOnRPCResponse",
"start-trufflepig": "cd src/lib/colonyNetwork && trufflepig --ganacheKeyFile ganache-accounts.json",
"start-server": "node src/index",
"create-mock-data": "rm -f src/temp.db && node src/init",
"test": "jest"
},
"contributors": [
"Erick Kusnadi <erick@handsomecodemonkey.com>"
],
"license": "MIT",
"dependencies": {
"@colony/colony-js-adapter-ethers": "^1.4.1",
"@colony/colony-js-client": "^1.4.1",
"@colony/colony-js-contract-loader-http": "^1.4.1",
"buffer": "^5.1.0",
"ethers": "^3.0.17",
"express": "^4.16.3",
"ipfs": "^0.29.2",
"pug": "^2.0.3",
"sqlite3": "^4.0.0"
},
"devDependencies": {
"ganache-cli": "^6.1.0",
"jest": "^23.1.0",
"trufflepig": "^1.0.4"
}
}