-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
86 lines (86 loc) · 2.98 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "gmx-synthetics",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"app": "vite",
"test": "NODE_OPTIONS=\"--max-old-space-size=8192\" npx hardhat test",
"prepare": "husky install",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint --fix $(git diff --name-only --cached --diff-filter=AM | grep '\\.ts')",
"lint:prettier": "prettier --write .prettierrc.json $(git diff --name-only --cached --diff-filter=AM | grep '\\.ts')",
"fork:avalancheFuji": "npx hardhat node --fork https://api.avax-test.network/ext/bc/C/rpc --no-deploy --fork-block-number 16658163",
"fork:avalanche": "npx hardhat node --fork https://api.avax.network/ext/bc/C/rpc --no-deploy",
"fork:arbitrum": "npx hardhat node --fork https://arb1.arbitrum.io/rpc --no-deploy"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@ethersproject/providers": "^5.7.1",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomicfoundation/hardhat-verify": "^2.0.11",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@typechain/ethers-v5": "^10.1.1",
"@typechain/hardhat": "^6.1.4",
"@types/chai": "^4.3.4",
"@types/mocha": "^9.1.1",
"@types/node": "^20.9.3",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"chai": "^4.3.7",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eth-create2-calculator": "^1.1.5",
"ethers": "^5.7.2",
"got": "11.8.3",
"hardhat": "^2.22.8",
"hardhat-deploy": "^0.11.25",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^8.0.0",
"prettier": "2.7.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@apollo/client": "^3.9.3",
"@chainlink/contracts": "^1.1.0",
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@openzeppelin/contracts": "4.9.3",
"@poanet/solidity-flattener": "^3.0.9",
"@rainbow-me/rainbowkit": "^1.3.0",
"@types/react": "^18.2.38",
"@vitejs/plugin-react": "^4.2.0",
"bn.js": "^5.2.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"decimal.js": "^10.4.3",
"dotenv": "16.0.3",
"eslint-plugin-chai-friendly": "^0.7.2",
"ethers-proxies": "^1.0.0",
"express": "^4.18.2",
"get-all-files": "^4.1.0",
"graphql": "^16.8.1",
"hardhat-contract-sizer": "^2.6.1",
"javascript-time-ago": "^2.5.9",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"prb-math": "2.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3",
"react-router-dom": "^6.19.0",
"react-time-ago": "^7.2.1",
"react-toastify": "^9.1.3",
"solidity-code-metrics": "^0.0.22",
"solidity-coverage": "^0.7.22",
"surya": "^0.4.6",
"swr": "^2.2.4",
"viem": "^1.19.5",
"vite": "^5.0.0",
"wagmi": "^1.4.7"
}
}