-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.35 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
{
"name": "radar-contracts",
"version": "1.0.0",
"description": "## Things to note",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "REPORT_GAS=true hardhat test",
"clean": "shx rm -rf ./artifacts ./cache ./cache_hardhat ./coverage ./coverage.json ./types && yarn typechain",
"compile": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat compile",
"lint": "yarn lint:sol && yarn lint:ts && yarn prettier:check",
"lint:sol": "forge fmt --check && yarn solhint \"{script,contracts,test}/**/*.sol\"",
"lint:ts": "eslint --ignore-path ./.eslintignore --ext .js,.ts .",
"prettier:write": "prettier --write \"**/*.{js,json,md,ts,yml}\"",
"prettier:check": "prettier --check \"**/*.{js,json,md,ts,yml}\"",
"deploy:mainnet": "npx hardhat run --network optimism script/deploy.ts",
"deploy:dev": "npx hardhat run --network optimism-goerli script/deploy.ts",
"upgrade:mainnet": "npx hardhat run --network optimism script/upgrade.ts",
"upgrade:dev": "npx hardhat run --network optimism-goerli script/upgradeDev.ts",
"verify:mainnet": "npx hardhat verify --network optimism 0xdbed288027cCbE7F6746bB62c989E7C09C7c8059",
"verify:dev": "npx hardhat verify --network optimism-goerli 0xEd4295091C232A000B6fF2A546b78Fd90Ae8Db4E"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-foundry": "^1.0.2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.4",
"@openzeppelin/hardhat-upgrades": "^2.0.2",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.0",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"ethers": "^6.6.5",
"hardhat": "^2.17.0",
"hardhat-gas-reporter": "^1.0.9",
"shx": "^0.3.4",
"solhint-community": "^3.7.0-rc01",
"solidity-coverage": "^0.8.1",
"ts-node": ">=8.0.0",
"typechain": "^8.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"dotenv": "^16.3.1"
}
}