-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 836 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 836 Bytes
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
{
"name": "fee-management-system",
"version": "1.0.0",
"description": "Developed for Sanjo Public School, Sulezari by Gourav Kolhatkar",
"main": "main.js",
"scripts": {
"watch": "nodemon --exec electron .",
"dist": "electron-builder --ia32 --x64 -w"
},
"keywords": [],
"author": "Gourav Kolhatkar",
"license": "MIT",
"dependencies": {
"bootstrap": "^5.0.2",
"exceljs": "^4.2.1"
},
"devDependencies": {
"electron": "^13.1.6",
"electron-builder": "^22.11.7"
},
"build": {
"appId": "com.fee-management-system.app",
"productName": "Fee Management System - Sanjo Public School, Sulezari",
"target": "NSIS",
"win" : {
"icon" : "./public/styles/ic_launcher.png"
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"oneClick": false
}
}
}