-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
80 lines (80 loc) · 2.24 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
{
"name": "avail",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri"
},
"eslintConfig": {
"extends": [
"xo",
"xo-react"
]
},
"optionalDependencies": {
"@esbuild/linux-x64": "^0.20.1"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.3",
"@mui/x-date-pickers": "^6.18.1",
"@tauri-apps/cli": "^2.0.0-beta.15",
"@tauri-apps/plugin-deep-link": "^2.0.0-beta.3",
"@tauri-apps/plugin-process": "^2.0.0-beta.3",
"@tauri-apps/plugin-updater": "^2.0.0-beta.3",
"@walletconnect/jsonrpc-utils": "^1.0.8",
"@walletconnect/web3wallet": "^1.10.1",
"axios": "^1.5.1",
"bs58": "^5.0.0",
"conf": "^12.0.0",
"date-fns": "^3.2.0",
"dayjs": "^1.11.10",
"eventemitter3": "^5.0.1",
"i18next": "^23.8.2",
"platform": "^1.3.6",
"react": "^17.0.0 || ^18.0.0",
"react-code-blocks": "^0.1.4",
"react-dom": "^17.0.0 || ^18.0.0",
"react-i18next": "^14.0.5",
"react-multi-carousel": "^2.8.4",
"react-pdf": "^7.5.1",
"react-qr-code": "^2.0.12",
"react-router-dom": "^6.14.2",
"react-spinners": "^0.13.8"
},
"devDependencies": {
"@tauri-apps/api": "^2.0.0-beta.10",
"@tauri-apps/cli": "^2.0.0-beta.15",
"@types/conf": "^3.0.0",
"@types/i18next": "^13.0.0",
"@types/node": "^18.7.10",
"@types/platform": "^1.3.4",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-i18next": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-config-xo": "^0.44.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-config-xo-typescript": "^3.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"internal-ip": "^7.0.0",
"typescript": "^5.3.3",
"vite": "^4.2.1",
"vite-plugin-node-polyfills": "^0.21.0",
"xo": "^0.57.0"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
}
}