-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 927 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 927 Bytes
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
{
"name": "zoracles",
"version": "1.0.0",
"main": "truffle-config.js",
"scripts": {
"compile": "truffle compile",
"test": "truffle test",
"deploy": "truffle compile --all && truffle migrate -f 1 --to 5 --network",
"deploy:token": "truffle compile --all && truffle migrate -f 1 --to 1 --network",
"deploy:timelock": "truffle compile --all && truffle migrate -f 2 --to 2 --network",
"deploy:governance": "truffle compile --all && truffle migrate -f 3 --to 3 --network",
"deploy:vesting": "truffle compile --all && truffle migrate -f 4 --to 4 --network"
},
"author": "Zoracles",
"license": "ISC",
"dependencies": {
"@openzeppelin/contracts-upgradeable": "^3.2.0",
"@truffle/hdwallet-provider": "^1.2.0"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.9",
"@openzeppelin/truffle-upgrades": "^1.2.2",
"dotenv": "^8.2.0",
"truffle": "^5.1.53"
}
}