forked from Jaybro-git/Banking-Management-System
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.44 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.44 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
{
"name": "btrust",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build && next export",
"start": "next start",
"electron:dev": "concurrently \"npm run dev\" \"wait-on http://localhost:3000 && electron electron-main.js\"",
"electron:build": "npm run build && electron-builder"
},
"dependencies": {
"chart.js": "^4.5.0",
"electron-is-dev": "^3.0.1",
"lucide-react": "^0.539.0",
"next": "15.4.6",
"react": "19.1.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "19.1.0",
"react-icons": "^5.5.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.0",
"electron": "^37.3.0",
"electron-builder": "^26.0.12",
"eslint": "^9",
"eslint-config-next": "15.4.6",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.12",
"typescript": "^5",
"wait-on": "^8.0.4"
},
"build": {
"appId": "com.btrust.app",
"productName": "BTrust",
"files": [
"out/**/*",
"node_modules/**/*",
"package.json",
"electron-main.js",
"preload.js"
],
"directories": {
"buildResources": "assets"
},
"mac": {
"target": "dmg"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
}
}
}