-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.83 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
{
"name": "soul-wallet-web",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite --port 8000",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,vue,css,scss,html}'",
"preview": "vite preview"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@passwordless-id/webauthn": "^1.3.0",
"@peculiar/asn1-ecc": "^2.3.6",
"@peculiar/asn1-schema": "^2.3.6",
"@safe-global/safe-apps-sdk": "^8.1.0",
"@soulwallet/abi": "^0.3.0",
"@soulwallet/decoder": "^0.3.0",
"@soulwallet/sdk": "^0.3.2",
"@tanstack/react-query": "^5.17.9",
"@types/node": "20.6.2",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"axios": "^1.5.0",
"bignumber.js": "^9.1.2",
"ethers": "^6.7.1",
"framer-motion": "^10.16.4",
"immer": "^10.0.2",
"nanoid": "^3.3.6",
"qrcode": "^1.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-jazzicon": "^1.0.4",
"react-router-dom": "^6.16.0",
"viem": "2.x",
"wagmi": "^2.5.7",
"zustand": "^4.4.1"
},
"devDependencies": {
"@types/qrcode": "^1.5.2",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"eslint": "^8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"prettier": "^3.0.3",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-remove-console": "^2.2.0"
}
}