-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.65 KB
/
package.json
File metadata and controls
65 lines (65 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "plz-minitool",
"version": "0.1.16",
"private": true,
"main": "electron/main.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"pm2:start": "pm2 start ecosystem.config.cjs",
"pm2:restart": "pm2 restart ecosystem.config.cjs --update-env",
"pm2:stop": "pm2 stop plz-minitool",
"lint": "eslint .",
"test": "node --test --experimental-strip-types \"src/**/*.test.mts\"",
"electron:dev": "concurrently -k -n next,electron -c blue,green \"npm:dev\" \"wait-on http://localhost:3000 && cross-env APP_WEB_URL=http://localhost:3000 electron .\"",
"electron:pack": "node scripts/build-electron.mjs"
},
"dependencies": {
"exceljs": "^4.4.0",
"next": "16.1.6",
"next-auth": "^5.0.0-beta.30",
"react": "19.2.3",
"react-dom": "19.2.3",
"server-only": "^0.0.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^25.5.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^41.0.1",
"electron-builder": "^26.8.1",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"typescript": "^5",
"wait-on": "^9.0.4"
},
"build": {
"appId": "com.private.plzminitool",
"productName": "PLZ-Zuordnung",
"directories": {
"output": "dist-electron"
},
"files": [
"electron/**/*",
"package.json"
],
"protocols": [
{
"name": "PLZ-Zuordnung Login",
"schemes": [
"plz-zuordnung"
]
}
],
"win": {
"target": [
"nsis"
]
}
}
}