-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 1.28 KB
/
package.json
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
{
"name": "the-happy-app",
"productName": "The Happy App",
"description": "Application for quantifying happiness",
"version": "0.1.0",
"main": "main.js",
"scripts": {
"start": "DEBUG=true node_modules/.bin/electron .",
"pack-osx": "electron-packager . the-happy-app --overwrite --platform=darwin --arch=x64 --icon=icons/Happy.icns --prune=true --ignore=\"release|feelings|icons|.gitignore|.github\" --out=release",
"pack-win": "electron-packager . the-happy-app --overwrite --asar --platform=win32 --arch=x64 --icon=icons/Happy.ico --prune=true --ignore=\"release|feelings|icons|.gitignore|.github\" --out=release --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"The Happy App\"",
"installer-osx": "bash installers/createMacInstaller.sh ",
"installer-win": "node installers/createWindowsInstaller.js",
"dmg": "npm run pack-osx; npm run installer-osx",
"exe": "npm run pack-win; npm run installer-win"
},
"dependencies": {
"face-api.js": "^0.22.2",
"fs": "^0.0.1-security",
"moment": "^2.20.1",
"screenshot-desktop": "^1.12.0"
},
"devDependencies": {
"electron": "^8.3.0",
"electron-installer-dmg": "^3.0.0",
"electron-packager": "^14.2.1",
"electron-winstaller": "^5.0.0"
}
}