-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.65 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.65 KB
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
{
"name": "rustsync",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"install:all": "npm ci && npm fund && cd server && npm ci && npm fund && cd ..",
"dev:server": "cd server && npm run dev",
"dev": "vite",
"dev:all": "cross-env VITE_DEBUG=true VITE_TOKEN=testing start npm run dev & start npm run dev:server",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"build:server": "cd ./server && npm run compile",
"build:server:bin": "node ./sidecar-builder.js"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/roboto": "^5.1.1",
"@mui/icons-material": "^6.4.2",
"@mui/material": "^6.4.2",
"@mui/styled-engine-sc": "^6.4.2",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-autostart": "^2.3.0",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-fs": "^2.2.0",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-shell": "^2.2.0",
"@tauri-apps/plugin-sql": "^2.2.0",
"axios": "^1.8.3",
"crypto-js": "^4.2.0",
"qrcode.react": "^4.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.1.3",
"react-router-dom": "^7.1.3",
"styled-components": "^6.1.14",
"zustand": "^5.0.3"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/crypto-js": "^4.2.2",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"postcss": "^8.5.1",
"tailwindcss": "^4.0.1",
"typescript": "~5.6.2",
"vite": "^6.0.3"
}
}