-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 2.18 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
46
47
48
49
{
"name": "@primedao/contracts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "truffle test",
"lint": "solhint 'contracts/**/*.sol' && npx eslint test/*.js",
"compile": "truffle compile --all",
"deploy:contracts:kovan": "truffle migrate --network kovan --reset",
"deploy:dao:kovan": "npx run scripts/kovan/migrateDAO.js --network kovan",
"setup:oracle:kovan": "npx truffle exec scripts/kovan/setupPriceOracle.js --network kovan",
"create:pool:kovan": "npx truffle exec scripts/kovan/createPool.js --network kovan",
"transfer:pool:kovan": "npx truffle exec scripts/kovan/transferPool.js --network kovan",
"init:staking:kovan": "npx truffle exec scripts/kovan/initRewards.js --network kovan",
"init:seedfactory:kovan": "npx truffle exec scripts/kovan/initSeedFactory.js --network kovan",
"deploy:seeds:kovan": "npx truffle exec scripts/kovan/deploySeeds.js --network kovan",
"deploy:contracts:mainnet": "truffle migrate --network mainnet --reset",
"deploy:dao:mainnet": "npx run scripts/mainnet/migrateDAO.js --network mainnet",
"setup:lock4rep:mainnet": "npx truffle exec scripts/mainnet/setupLockToken4Reputation.js --network mainnet",
"create:pool:mainnet": "npx truffle exec scripts/mainnet/createPool.js --network mainnet",
"transfer:pool:mainnet": "npx truffle exec scripts/mainnet/transferPool.js --network mainnet",
"init:staking:mainnet": "npx truffle exec scripts/mainnet/initRewards.js --network mainnet",
"coverage": "truffle run coverage",
"flatten": "sol-merger \"./contracts/**/*.sol\" ./_flat"
},
"author": "",
"license": "ISC",
"dependencies": {
"@daostack/arc": "0.0.1-rc.41",
"@daostack/infra": "0.0.1-rc.17",
"@daostack/migration": "0.0.1-rc.44-v0",
"@openzeppelin/test-helpers": "^0.5.10",
"@truffle/hdwallet-provider": "^1.1.0",
"big-integer": "^1.6.48",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"fs": "0.0.1-security",
"openzeppelin-solidity": "2.5.0",
"sol-merger": "^3.1.0",
"solhint": "^3.2.2",
"truffle": "^5.1.43",
"web3": "^1.3.0"
},
"devDependencies": {
"eslint": "^7.9.0",
"solidity-coverage": "^0.7.11"
}
}