-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.76 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.76 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
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
81
82
{
"name": "SAMPLE_APP",
"version": "1.0.0",
"description": "Template repo for fully-filled Desktop app featuring Electron, React, tRPC, Tailwind, and many other top technologies Resources",
"main": "./out/main/index.js",
"author": "https://github.com/tomkennedy22",
"homepage": "https://github.com/tomkennedy22/react-desktop-starter",
"scripts": {
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev -w",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "electron-vite build && electron-builder --mac",
"build:linux": "electron-vite build && electron-builder --linux",
"prisma:push": "npx prisma db push --accept-data-loss",
"prisma:seed": "tsx ./src/backend/db/seed.ts",
"rebuild": "electron-rebuild -f -w better-sqlite3"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^4.0.0",
"@heroui/react": "^2.8.0-beta.11",
"@prisma/adapter-better-sqlite3": "^7.0.0",
"@prisma/client": "^7.0.0",
"@tailwindcss/postcss": "latest",
"@tailwindcss/vite": "^4.1.17",
"@tanstack/react-form": "^1.13.2",
"@tanstack/react-query": "^5.81.5",
"@tanstack/react-router": "^1.125.1",
"@tanstack/react-router-devtools": "^1.125.1",
"@trpc/client": "^11.4.3",
"@trpc/react-query": "^11.4.3",
"@trpc/server": "^11.4.3",
"@trpc/tanstack-react-query": "^11.4.3",
"dotenv": "^17.2.3",
"electron-trpc": "latest",
"electron-trpc-experimental": "^1.0.0-alpha.1",
"electron-updater": "^6.3.9",
"framer-motion": "^12.23.0",
"lucide-react": "^0.554.0",
"next-themes": "^0.4.6",
"prisma-json-types-generator": "latest",
"tailwindcss": "^4.1.17",
"zod": "^3.25.74",
"zustand": "^5.0.6"
},
"devDependencies": {
"@biomejs/biome": "2.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@tanstack/router-plugin": "^1.125.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.19.1",
"@types/react": "^19.1.1",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.3.4",
"electron": "latest",
"electron-builder": "latest",
"electron-rebuild": "latest",
"electron-vite": "latest",
"prisma": "latest",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tsx": "^4.20.3",
"typescript": "latest",
"vite": "latest"
},
"prisma": {
"schema": "./src/backend/db/schema.prisma"
},
"build": {
"appId": "com.example.app",
"mac": {
"category": "your.app.category.type",
"darkModeSupport": true
}
}
}