-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
100 lines (100 loc) · 3.07 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
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "diamond-ui",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@reown/appkit": "^1.0.7",
"@reown/appkit-adapter-wagmi": "^1.0.7",
"@tanstack/react-query": "^5.59.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@typechain/web3-v1": "^6.0.7",
"@types/web3": "^1.2.2",
"@vitejs/plugin-react-swc": "^3.7.1",
"@walletconnect/client": "^1.8.0",
"@walletconnect/web3-provider": "^1.8.0",
"@web3modal/wagmi": "^5.1.11",
"ajv": "^6.12.6",
"ajv-keywords": "^3.5.2",
"assert": "^2.1.0",
"axios": "^1.7.7",
"bignumber.js": "^9.1.2",
"bn.js": "^5.2.1",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"copy-to-clipboard": "^3.3.3",
"ethereumjs-util": "^7.1.5",
"http-proxy-middleware": "^3.0.0",
"https-browserify": "^1.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"react-jazzicon": "^1.0.4",
"react-router-dom": "^6.23.1",
"react-toastify": "^10.0.5",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"typechain": "^8.3.2",
"url": "^0.11.3",
"viem": "^2.21.19",
"vite": "^5.4.8",
"vite-plugin-commonjs": "^0.10.3",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^5.0.1",
"wagmi": "^2.12.17",
"web-vitals": "^4.0.1",
"web3": "^1.8.1",
"web3-core-helpers": "^1.10.4"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "vitest",
"test:coverage": "vitest run --coverage --watch=false",
"update-dao-abis": "find ../diamond-contracts-dao/artifacts/contracts -type f -name '*.json' ! -name '*.dbg.json' -exec cp {} ./src/contexts/contract-abis \\;",
"update-core-abis": "find ../diamond-contracts-core/artifacts/contracts -type f -name '*.json' ! -name '*.dbg.json' -exec cp {} ./src/contexts/contract-abis \\;",
"typechain": "node_modules/.bin/typechain --target web3-v1 --out-dir src/contexts/contracts/ 'src/contexts/contract-abis/**/*.json'"
},
"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": {
"@types/bn.js": "^5.1.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitest/coverage-v8": "^2.1.2",
"jsdom": "^25.0.1",
"react-app-rewired": "^2.2.1",
"typescript": "^5.4.5",
"vite-plugin-node-polyfills": "^0.22.0",
"vitest": "^2.1.2"
},
"overrides": {
"typescript": "^5.4.5"
},
"proxy": "https://alpha3.uniq.domains/rpc"
}