-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
69 lines (69 loc) · 1.94 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
{
"name": "perennialmono",
"version": "1.3.0",
"main": "index.js",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"postinstall": "patch-package"
},
"devDependencies": {
"@codechecks/client": "^0.1.10",
"@defi-wonderland/smock": "^2.0.7",
"@equilibria/root": "2.3.0-rc8",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "2.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@openzeppelin/contracts": "4.8.0",
"@pythnetwork/pyth-sdk-solidity": "^2.2.1",
"@typechain/ethers-v5": "^10.2.1",
"@typechain/hardhat": "^6.1.6",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"chai": "^4.2.0",
"concurrently": "^7.3.0",
"dotenv": "^8.2.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"ethereum-waffle": "4.0.10",
"hardhat": "2.16.1",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-dependency-compiler": "1.1.3",
"hardhat-deploy": "0.11.31",
"hardhat-gas-reporter": "2.2.1",
"hardhat-tracer": "2.5.1",
"husky": ">=6",
"lerna": "^4.0.0",
"lint-staged": ">=10",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.1.3",
"solhint": "^3.4.1",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "0.8.3",
"ts-generator": "^0.1.1",
"ts-node": "^9.0.0",
"typechain": "^8.1.0",
"typescript": "^4.3.2"
},
"resolutions": {
"@solidity-parser/parser": "^0.16.1"
},
"lint-staged": {
"*.{ts,.js}": [
"prettier --write",
"eslint --fix"
],
"*.json": "prettier --write"
}
}