-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"name": "tauri-rspc-prisma",
"description": "A minimal Tauri + rspc + Prisma example app.",
"version": "0.1.0",
"license": "MIT",
"author": "tomheaton",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"format": "prettier --write . && cargo fmt",
"clean": "rm -rf node_modules dist target src-tauri/target",
"prisma:generate": "cargo prisma generate"
},
"dependencies": {
"@rspc/client": "^0.2.0",
"@rspc/react": "^0.2.0",
"@rspc/tauri": "^0.2.0",
"@tanstack/react-query": "^5.51.15",
"@tauri-apps/api": "^1.6.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.25.1"
},
"devDependencies": {
"@tauri-apps/cli": "^1.6.0",
"@types/node": "^22.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.40",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^4.0.0",
"prettier-plugin-tailwindcss": "^0.6.5",
"prisma": "^5.17.0",
"tailwindcss": "^3.4.7",
"typescript": "^5.5.4",
"vite": "^5.3.5"
}
}