forked from vminkov/veXYZ
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 2.48 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
{
"name": "template",
"version": "1.0.0",
"description": "",
"author": "",
"license": "ISC",
"dependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-truffle5": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/contracts-upgradeable": "^4.7.0",
"@openzeppelin/hardhat-upgrades": "^1.17.0",
"@openzeppelin/test-helpers": "^0.5.15",
"dotenv": "^16.0.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.1",
"hardhat": "^2.17.0",
"hardhat-abi-exporter": "^2.8.0",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-spdx-license-identifier": "^2.0.3",
"hardhat-storage-layout": "^0.1.6"
},
"scripts": {
"build": "forge build && rm -rf typechain && yarn typechain",
"forge": "forge",
"prettier": "prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol' --config .prettierrc",
"lint": "prettier --list-different --plugin=prettier-plugin-solidity 'contracts/**/*.sol' --config .prettierrc",
"lint-ts": "eslint . -c .eslintrc.json --ext ts,json",
"lint-fix-ts": "eslint . -c .eslintrc.json --fix --ext ts,json",
"deploy": "hardhat deploy --tags prod --no-compile",
"typechain": "echo '> Creating typechain types...'; [ ! -d ./typechain ] && typechain --target ethers-v5 --out-dir './typechain' './out/**/*.json' --show-stack-traces",
"deploy:localhost": "hardhat --network localhost deploy --tags prod --no-compile",
"deploy:chapel": "hardhat --network chapel deploy --tags prod --no-compile",
"deploy:arbigoerli": "hardhat --network arbigoerli deploy --tags prod --no-compile",
"deploy:mumbai": "hardhat --network mumbai deploy --tags prod --no-compile"
},
"files": [
"contracts"
],
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@typechain/ethers-v5": "^11.1.0",
"@typechain/hardhat": "^9.0.0",
"@types/eslint": "^8.44.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"hardhat-deploy": "^0.11.34",
"prettier": "3.0.0",
"prettier-plugin-solidity": "1.1.3",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.1.6"
}
}