-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.47 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
{
"name": "electron-prisma-trpc-example",
"version": "1.3.0",
"repository": "https://github.com/awohletz/electron-prisma-trpc-example-releases",
"description": "An example repo showing how to use Electron with tRPC and Prisma",
"main": "dist/electron/main.js",
"scripts": {
"build": "vite build && prisma generate && tsc --build && node copy-files.js && node install-engines-on-mac.js",
"start": "npm run build && cross-env NODE_ENV=development electron .",
"pack": "npm run build && electron-builder --dir",
"dist": "npm run build && electron-builder",
"publish": "npm run build && dotenv -- electron-builder -p always"
},
"author": "Ayron Wohletz",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.11.17",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^4.2.1",
"cross-env": "^7.0.3",
"dotenv-cli": "^6.0.0",
"electron": "^22.0.0",
"electron-builder": "^23.6.0",
"electron-notarize": "^1.2.1",
"fs-extra": "^11.1.0",
"replace-in-file": "^6.3.5",
"typescript": "^4.9.4",
"vite": "^4.0.2"
},
"dependencies": {
"@electron/remote": "^2.1.2",
"@prisma/client": "^5.9.1",
"@prisma/engines": "^5.9.1",
"@trpc/client": "^10.5.0",
"@trpc/server": "^10.5.0",
"dotenv": "^16.0.3",
"electron-log": "^4.4.8",
"prisma": "^5.9.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"superjson": "^1.12.1",
"zod": "^3.20.2"
}
}