forked from superdao-inc/dao-blockchain-os
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 5.02 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "os",
"version": "0.0.0",
"repository": "https://gitlab.superdao.co/dev/blockchain/os",
"types": "./typechain-types/index.ts",
"main": "./typechain-types/index.ts",
"engines": {
"node": ">=16.14",
"pnpm": ">=7.1.0"
},
"scripts": {
"clean": "hardhat clean",
"chain": "hardhat node --tags protocol,implementations",
"console": "npx hardhat console --network localhost",
"compile": "hardhat compile",
"compile:force": "hardhat compile --force",
"test": "hardhat --network hardhat test",
"deploy:hardhat": "hardhat clean && hardhat typechain && hardhat deploy --network hardhat",
"deploy:localhost": "hardhat clean && hardhat typechain && hardhat deploy --network localhost",
"deploy:testnet": "hardhat clean && hardhat typechain && hardhat deploy --network testnet",
"deploy:mainnet": "hardhat clean && hardhat typechain && hardhat deploy --network mainnet",
"deploy:stage": "hardhat clean && hardhat typechain && hardhat deploy --network stage",
"typechain": "hardhat typechain",
"coverage": "hardhat compile --config hardhat.test.config.ts && hardhat coverage --config hardhat.test.config.ts",
"verify:testnet": "hardhat etherscan-verify --network testnet",
"verify:mainnet": "hardhat etherscan-verify --network mainnet",
"verify:stage": "hardhat etherscan-verify --network stage",
"size": "hardhat size-contracts --no-compile",
"docgen": "hardhat docgen",
"upgrade-impl": "hardhat upgrade-impl --network localhost",
"manager-add-impl": "hardhat manager-add-impl --network localhost",
"manager-upgrade-app": "hardhat manager-upgrade-app --network localhost",
"newpk": "node utils/create-new-pk.ts",
"keystore": "node ./utils/create-keystore.ts",
"prettier": "prettier . --config .prettierrc --ignore-path .prettierignore --check",
"prettier:fix": "prettier . --config .prettierrc --ignore-path .prettierignore --write",
"eslint": "eslint . -c .eslintrc.json --ignore-path .eslintignore --ext ts",
"eslint:fix": "eslint . -c .eslintrc.json --ignore-path .eslintignore --ext ts --fix",
"lint": "pnpm prettier && pnpm eslint",
"lint:fix": "pnpm prettier:fix && pnpm eslint:fix",
"prepare": "husky install"
},
"devDependencies": {
"@chainlink/contracts": "^0.4.0",
"@ethersproject/bytes": "^5.6.1",
"@gnosis.pm/safe-contracts": "^1.3.0",
"@gnosis.pm/safe-core-sdk": "^2.3.0",
"@gnosis.pm/safe-core-sdk-types": "^1.3.0",
"@gnosis.pm/safe-deployments": "^1.1.0",
"@gnosis.pm/safe-ethers-lib": "^1.3.0",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^2.1.4",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^4.4.1",
"@openzeppelin/contracts-upgradeable": "^4.5.1",
"@openzeppelin/hardhat-upgrades": "^1.14.0",
"@openzeppelin/test-helpers": "^0.5.15",
"@tenderly/hardhat-tenderly": "^1.0.13",
"@typechain/ethers-v5": "^8.0.3",
"@typechain/hardhat": "^3.0.0",
"@types/chai": "^4.2.22",
"@types/cli-progress": "^3.11.0",
"@types/inquirer": "^8.2.1",
"@types/jest": "^27.4.0",
"@types/keythereum": "^1.2.1",
"@types/mocha": "^9.1.0",
"@types/node": "^14.17.21",
"@types/ramda": "^0.28.0",
"@types/semver": "^7.3.10",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@uniswap/v3-core": "^1.0.1",
"axios": "^0.27.2",
"chai": "^4.3.4",
"cli-progress": "^3.11.2",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.7.0",
"hardhat": "^2.6.6",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-dependency-compiler": "^1.1.3",
"hardhat-deploy": "^0.9.1",
"hardhat-gas-reporter": "^1.0.8",
"husky": "^8.0.1",
"inquirer": "^8.2.4",
"keythereum": "^1.2.0",
"merkletreejs": "^0.2.32",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"ramda": "^0.28.0",
"solc": "0.8.12",
"solidity-coverage": "^0.7.20",
"solidity-docgen": "0.6.0-beta.16",
"test-helpers": "link:@types/openzeppelin/test-helpers",
"ts-node": "^10.2.0",
"tsconfig-paths": "^4.0.0",
"typechain": "^6.0.3",
"typescript": "^4.3.5",
"yarn-audit-fix": "^9.0.11"
},
"dependencies": {
"web3-utils": "^1.7.4"
}
}