-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 2.49 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "contracts-v2",
"version": "1.0.0",
"description": "new experimental version of PrimeDAO contracts",
"main": "index.js",
"scripts": {
"deploy:contracts:rinkeby": "npx hardhat deploy --network rinkeby --tags Export,$npm_config_tags",
"deploy:contracts:kovan": "npx hardhat deploy --network kovan --tags Export,$npm_config_tags",
"deploy:contracts:mainnet": "npx hardhat deploy --network mainnet --tags Export,$npm_config_tags",
"deploy:contracts:arbitrum": "npx hardhat deploy --network arbitrum --tags Export,$npm_config_tags",
"deploy:contracts:alfajores": "npx hardhat deploy --network alfajores --tags Export,$npm_config_tags",
"deploy:contracts:celo": "npx hardhat deploy --network celo --tags Export,$npm_config_tags",
"compile": "hardhat compile",
"format": "npx prettier --write \"**/*.js\" \"**/*.sol\"",
"lint": "eslint . --ext .js && solhint 'contracts/**/*.sol'",
"test": "hardhat test",
"coverage": "hardhat coverage",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PrimeDAO/contracts-v2.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PrimeDAO/contracts-v2/issues"
},
"homepage": "https://github.com/PrimeDAO/contracts-v2#readme",
"devDependencies": {
"@mstable/protocol": "^1.1.2",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.11",
"@openzeppelin/upgrades": "2.7.2",
"chai": "^4.3.4",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"ethereum-waffle": "^3.3.0",
"hardhat": "^2.6.0",
"hardhat-deploy": "^0.7.0-beta.46",
"hardhat-deploy-ethers": "^0.3.0-beta.10",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^7.0.2",
"openzeppelin-contracts-sol5": "npm:@openzeppelin/contracts@2.5.1",
"openzeppelin-contracts-sol8": "npm:@openzeppelin/contracts@4.2.0",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.16",
"web3": "^1.3.6"
},
"dependencies": {
"@balancer-labs/v2-deployments": "^2.3.0",
"@gnosis.pm/safe-contracts": "1.3.0",
"@openzeppelin/contracts": "4.3.3",
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"ethers": "^5.4.1",
"openzeppelin-solidity": "4.1.0",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solhint-plugin-prettier": "^0.0.5"
}
}