-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.81 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
{
"name": "dev-arb-one",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "hardhat test",
"pretest": "yarn generate",
"generate": "hardhat compile",
"pregenerate": "yarn clean",
"postgenerate": "yarn lint:format",
"lint": "yarn lint:eslint && yarn lint:solhint && yarn lint:format",
"lint:eslint": "eslint . --ext .ts --fix",
"lint:solhint": "solhint --fix \"contracts/**/*.sol\"",
"lint:format": "prettier --write '**/*.{sol,ts,json,md,yml}'",
"build": "tsc -p tsconfig.build.json",
"prebuild": "yarn generate",
"clean": "rimraf scripts/**/*.js build"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.1.1",
"@nomiclabs/hardhat-etherscan": "3.1.0",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@openzeppelin/hardhat-upgrades": "1.19.0",
"@typechain/ethers-v5": "10.2.1",
"@typechain/hardhat": "6.1.6",
"@types/chai": "4.3.20",
"@types/mocha": "10.0.10",
"@types/node": "18.13.0",
"@typescript-eslint/eslint-plugin": "5.51.0",
"@typescript-eslint/parser": "5.51.0",
"chai": "4.5.0",
"dotenv": "16.4.7",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-config-standard": "17.1.0",
"eslint-config-xo": "0.43.1",
"eslint-config-xo-typescript": "0.55.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "14.0.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.6.0",
"ethereum-waffle": "3.4.4",
"ethers": "5.7.2",
"hardhat": "2.9.9",
"hardhat-abi-exporter": "2.3.0",
"hardhat-gas-reporter": "1.0.10",
"prettier": "2.8.8",
"prettier-plugin-solidity": "1.1.2",
"solhint": "3.3.8",
"solidity-coverage": "0.8.2",
"ts-node": "10.2.1",
"typechain": "8.1.1",
"typescript": "4.6.4"
},
"dependencies": {
"@openzeppelin/contracts": "4.3.2",
"@openzeppelin/contracts-upgradeable": "4.3.2"
}
}