-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.16 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.16 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
83
84
85
86
{
"name": "Lepolankeng",
"version": "1.0.0",
"private": true,
"main": "main/main.js",
"author": "Pheta Theoha",
"description": "Electron + Nextjs Local POS Project",
"scripts": {
"dev": "concurrently -n \"NEXT,ELECTRON\" -c \"yellow,blue\" --kill-others \"next dev\" \"electron .\"",
"build": "next build && electron-builder",
"start": "electron-forge start",
"lint": "next lint",
"package": "electron-forge package",
"make": "electron-forge make"
},
"dependencies": {
"electron-serve": "^2.0.0",
"electron-squirrel-startup": "^1.0.1",
"next": "14.2.3",
"next-auth": "^4.24.7",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"reactjs-popup": "^2.0.6",
"zod": "^3.23.8"
},
"devDependencies": {
"@electron-forge/cli": "^7.4.0",
"@electron-forge/maker-deb": "^7.4.0",
"@electron-forge/maker-rpm": "^7.4.0",
"@electron-forge/maker-squirrel": "^7.4.0",
"@electron-forge/maker-zip": "^7.4.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.4.0",
"@electron-forge/plugin-fuses": "^7.4.0",
"@electron/fuses": "^1.8.0",
"@prisma/client": "^5.16.0",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"concurrently": "^8.2.2",
"electron": "^31.1.0",
"electron-builder": "^22.11.7",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"postcss": "^8",
"prisma": "^5.16.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.5"
},
"build": {
"appId": "ed.tester",
"asar": true,
"files": [
"main/**/*",
"dist/**/*",
"node_modules/**/*",
"package.json"
],
"directories": {
"output": "dist"
},
"win": {
"target": [
"nsis",
"portable"
]
}
},
"config": {
"forge": {
"packagerConfig": {
"icon": "path/to/icon"
},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "your_app_name",
"authors": "Your Name",
"description": "Your application description goes here."
}
}
]
}
}
}