You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
2.0 KiB
JSON
52 lines
2.0 KiB
JSON
{
|
|
"name": "steeringwheel",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Front end for employee resources",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/username/repository.git"
|
|
},
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"clean": "rm -rf build/*",
|
|
"build": "tsc -p ./src/ts_source --outDir ./build/util && rsync -avP ./src/ ./build/ && cp ./package.json ./build/",
|
|
"start": "npm run build && electron ./build",
|
|
"dev": "npm run build && electron ./build --debug",
|
|
"package": "npm-run-all package:*",
|
|
"package:mac": "electron-packager ./build --overwrite --platform=darwin --arch=x64 --out=out --icon=assets/app-icon/mac/app.icns --osx-sign.identity='Developer ID Application: GitHub' --extend-info=assets/mac/info.plist",
|
|
"package:win32": "electron-packager ./build --overwrite --platform=win32 --arch=ia32 --out=out --icon=assets/app-icon/win/app.ico",
|
|
"package:win64": "electron-packager ./build --overwrite --platform=win32 --arch=x64 --out=out --icon=assets/app-icon/win/app.ico",
|
|
"package:linux": "electron-packager ./build --overwrite --platform=linux --arch=x64 --out=out",
|
|
"package:installer": "node ./script/installer.js",
|
|
"release": "node ./script/release.js",
|
|
"prepack": "check-for-leaks",
|
|
"prepush": "check-for-leaks"
|
|
},
|
|
"keywords": [],
|
|
"author": "David Tookey",
|
|
"license": "Closed Source",
|
|
"dependencies": {
|
|
"electron-log": "^2.2.14",
|
|
"glob": "^7.1.0",
|
|
"highlight.js": "^9.3.0",
|
|
"update-electron-app": "^1.1.1",
|
|
"check-for-leaks": "^1.2.1",
|
|
"mustache": "^4.0.1",
|
|
"typescript": "^4.0.3",
|
|
"tslint": "^6.1.3",
|
|
"popper.js": "^1.16.1",
|
|
"jquery": "^3.5.1",
|
|
"bootstrap": "^4.5.3"
|
|
},
|
|
"devDependencies": {
|
|
"devtron": "^1.4.0",
|
|
"electron": "^7.2.4",
|
|
"electron-settings": "^3.0.7",
|
|
"electron-shortcut-normalizer": "^1.0.0",
|
|
"electron-packager": "^15.1.0",
|
|
"@types/jquery": "^3.5.1"
|
|
}
|
|
}
|