-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.63 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
{
"name": "electrostatic",
"description": "Starter Template for electron apps with trpc , drizzle-orm and sqlite",
"version": "0.0.1",
"author": {
"email": "youremail@provider.com",
"name": "your_name"
},
"license": "MIT",
"repository": {
"url": "https://github.com/Inalegwu/ElectroStatic.git"
},
"main": "out/main/main.js",
"scripts": {
"start": "electron-vite preview",
"dev": "electron-vite dev -w",
"prebuild": "electron-vite build",
"build": "pnpm tsx build.ts",
"db:generate": "drizzle-kit generate:sqlite",
"db:push": "drizzle-kit push:sqlite",
"postinstall": "electron-rebuild"
},
"dependencies": {
"@electron/rebuild": "^3.6.0",
"@legendapp/state": "^2.1.14",
"@phosphor-icons/react": "^2.1.7",
"@radix-ui/themes": "^2.0.3",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-router": "^1.48.4",
"@trpc/client": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"electron-trpc": "^0.5.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"sort-by": "^1.2.0",
"tinybase": "^4.8.17",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@tanstack/router-devtools": "^1.48.4",
"@tanstack/router-vite-plugin": "^1.48.6",
"@types/node": "^20.16.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"electron": "^28.3.3",
"electron-builder": "^24.13.3",
"electron-vite": "^2.3.0",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"unocss": "^0.58.9",
"vite": "^5.4.2"
}
}