-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.28 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
{
"name": "rubic-bridge-base",
"version": "1.6.1",
"scripts": {
"build": "tsc",
"lint": "./node_modules/.bin/solhint -f table contracts/**/*.sol && eslint test/** ",
"format": "prettier --write contracts/**/*.sol && eslint test/** --fix",
"test": "npx hardhat test"
},
"files": [
"lib/**/*",
"contracts"
],
"license": "ISC",
"dependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@openzeppelin/contracts": "^4.8.0",
"@openzeppelin/contracts-upgradeable": "^4.8.0",
"@openzeppelin/test-helpers": "^0.5.16",
"@types/chai": "^4.3.4",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"hardhat": "^2.12.2",
"hardhat-contract-sizer": "^2.6.1"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^10.9.1"
}
}