-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.47 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
87
88
{
"name": "react-insurance",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^5.3.7",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@rainbow-me/rainbowkit": "^2.2.1",
"@tanstack/query-core": "^5.62.2",
"@tanstack/react-query": "^5.62.2",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@wagmi/core": "^2.15.2",
"@web3-react/core": "^8.2.3",
"@web3-react/injected-connector": "^6.0.7",
"antd": "^5.17.3",
"axios": "^1.7.2",
"bcryptjs": "^2.4.3",
"chart.js": "^4.4.7",
"ethers": "^6.13.4",
"express": "^4.21.2",
"hardhat": "^2.22.17",
"less": "^4.2.1",
"less-loader": "^12.2.0",
"moment": "^2.30.1",
"mysql2": "^3.11.5",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.1",
"react-scripts": "5.0.1",
"recharts": "^2.14.1",
"solc": "^0.8.26",
"wagmi": "^2.13.3",
"web-vitals": "^2.1.4",
"web3": "^4.8.0"
},
"scripts": {
"start": "react-scripts start",
"compile": "npx hardhat compile",
"deploy": "npx hardhat run scripts/deploy.js",
"chain": "npx hardhat node",
"server": "nodemon server/app.js",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"postinstall": "node create-symlink.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-ignition": "^0.15.0",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.0",
"@nomicfoundation/ignition-core": "^0.15.0",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/chai": "^4.2.0",
"@types/mocha": "^10.0.10",
"chai": "^4.2.0",
"hardhat-gas-reporter": "^1.0.8",
"solidity-coverage": "^0.8.1",
"ts-node": "^10.9.2",
"typechain": "^8.3.0",
"typescript": "^5.0.4"
}
}