-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.67 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
{
"name": "sparus",
"version": "0.1.0",
"license": "Apache-2.0",
"type": "module",
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^6.0.1",
"@mui/lab": "^6.0.0-beta.8",
"@mui/material": "^6.0.1",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/cli": "^2.0.0",
"@tauri-apps/plugin-autostart": "^2.0.0",
"@tauri-apps/plugin-dialog": "~2",
"@tauri-apps/plugin-fs": "^2.0.0",
"@tauri-apps/plugin-notification": "^2.0.0",
"@tauri-apps/plugin-os": "^2.0.0",
"@tauri-apps/plugin-process": "^2.0.0",
"@tauri-apps/plugin-shell": "^2.0.0",
"@tauri-apps/plugin-store": "2.2.0",
"@tauri-apps/plugin-stronghold": "^2.0.0",
"internal-ip": "^8.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "^15.0.1",
"react-router-dom": "^6.22.3"
},
"devDependencies": {
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^5.0.0",
"prettier": "^3.3.0",
"typescript": "^5.4.4",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.0",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^5.0.1"
},
"scripts": {
"dev": "vite",
"lint": "eslint .",
"prettier": "prettier --check .",
"build": "tsc && vite build",
"serve": "vite preview",
"tauri": "tauri"
}
}