-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.21 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
{
"name": "notus-contracts",
"version": "0.0.3",
"main": "index.js",
"repository": "[email protected]:notifyus/notus-contracts.git",
"author": "Brendan Asselstine <[email protected]>",
"license": "MIT",
"files": [
"build",
"contracts",
"zos.json",
"zos.*.json"
],
"scripts": {
"test": "truffle test --network local",
"start": "./scripts/ganache.sh",
"migrate": "truffle migrate --network local",
"migrate-ropsten": "truffle migrate --network ropsten",
"push": "zos push",
"update-all": "zos update --all",
"push-and-update": "yarn push && yarn update-all && zos-truffle-merge -n 1234 zos.dev-1234.json",
"session": "zos session --from $ADMIN_ADDRESS --network local --expires 7200",
"session-ropsten": "zos session --from $ADMIN_ADDRESS --network ropsten --expires 7200",
"console": "truffle console --network local",
"version": "truffle version"
},
"devDependencies": {
"chalk": "^2.4.2",
"ganache-cli": "^6.2.5",
"openzeppelin-eth": "^2.1.3",
"shelljs": "^0.8.3",
"truffle": "^5.0.1",
"truffle-deploy-registry": "^0.5.0",
"truffle-hdwallet-provider": "^1.0.0-web3one.5",
"zos": "^2.1.0",
"zos-truffle-merge": "^0.0.3"
}
}