-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·34 lines (34 loc) · 1.31 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
{
"name": "bancor-contracts",
"version": "0.5.15",
"repository": {
"type": "git",
"url": "https://github.com/bancorprotocol/contracts"
},
"scripts": {
"install": "node scripts/fix-modules.js",
"build": "node scripts/rebuild-all.js",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "node scripts/bancor-protocol/deploy-one.js",
"verify": "node scripts/bancor-protocol/verify-all.js",
"flatten": "node scripts/bancor-protocol/flatten.js",
"test:truffle": "truffle test ./test/*",
"start-blank": "rm -rf client/src && cp -rf barebones/src client/",
"client": "cd client && npm run start",
"console:development": "truffle console --reset --network development",
"compile:development": "truffle compile --reset --network development",
"migrate:development": "truffle migrate --reset --network development",
"console:ropsten": "truffle console --reset --network ropsten",
"compile:ropsten": "truffle compile --reset --network ropsten",
"migrate:ropsten": "truffle migrate --reset --network ropsten"
},
"dependencies": {
"decimal.js": "10.2.0",
"solidity-coverage": "0.6.7",
"truffle-contract": "3.0.8",
"truffle-flattener": "1.4.2",
"web3": "1.2.1",
"@truffle/hdwallet-provider": "^1.0.29",
"dotenv": "^8.2.0"
}
}