-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.53 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.53 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
{
"name": "spendingmanager",
"version": "4.1.2",
"description": "Ứng dụng ghi chú và quản lý chi tiêu cá nhân",
"main": "./src/electronApp.js",
"scripts": {
"start": "nodemon src/app.js",
"wd": "electron .",
"watch": "nodemon --exec electron .",
"package": "electron-builder",
"package-all": "electron-builder -mwl"
},
"author": "ALR2310",
"license": "ISC",
"homepage": "https://github.com/ALR2310/SpendingManager#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ALR2310/SpendingManager.git"
},
"bugs": {
"url": "https://github.com/ALR2310/SpendingManager/issues"
},
"build": {
"appId": "com.alr2310.spendingmanager",
"productName": "Spending Manager",
"directories": {
"output": "dist"
},
"win": {
"target": "nsis",
"icon": "./public/images/favicon.ico"
},
"mac": {
"target": "dmg",
"icon": "./public/images/favicon.icns"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true
},
"asar": true,
"artifactName": "Spending-Manager-Setup-${version}.${ext}",
"publish": {
"provider": "github",
"owner": "ALR2310",
"repo": "SpendingManager"
}
},
"dependencies": {
"@journeyapps/sqlcipher": "^5.3.1",
"axios": "^1.7.7",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"electron-updater": "^6.3.9",
"express": "^4.21.1",
"express-session": "^1.18.1",
"googleapis": "^144.0.0",
"ini": "^5.0.0",
"lodash": "^4.17.21",
"node-ipc": "^12.0.0",
"node-notifier": "^10.0.1",
"node-schedule": "^2.1.1",
"nodemailer": "^6.9.15",
"passport": "^0.7.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"pretty-bytes": "^5.6.0",
"uuid": "^11.0.3",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/ini": "^4.1.1",
"@types/node-ipc": "^9.2.3",
"@types/node-schedule": "^2.1.7",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.5.13",
"electron": "^33.2.0",
"electron-builder": "^24.13.3",
"nodemon": "^3.1.7"
}
}