{ "name": "its.yongin", "version": "1.0.0", "description": "Yongin ITS App", "author": "HANTE Information Co.,Ltd.", "main": "./main.js", "scripts": { "start": "cross-env NODE_ENV=dev electron .", "start2": "set NODE_ENV=dev&& electron .", "start_temp": "./node_modules/.bin/electron.cmd ./main.js", "deploy:osx": "electron-builder --mac", "deploy:win": "npm run deploy:win32 && npm run deploy:win64", "deploy:win32": "electron-builder --win nsis:ia32", "deploy:win64": "set NODE_ENV=prod&& electron-builder --win nsis:x64", "test": "echo \"Error: no test specified\" && exit 1" }, "build": { "productName": "Yongin ITS App", "appId": "its.yongin", "copyright": "Copyright © 2019 ${author}", "asar": true, "mac": { "target": [ "default" ] }, "dmg": { "title": "YONGIN ITS" }, "win": { "icon": "./assets/icons/png/app.png", "target": [ { "target": "nsis", "arch": [ "x64", "ia32" ] } ] }, "nsis": { "oneClick": false, "allowToChangeInstallationDirectory": false, "createDesktopShortcut": true }, "directories": { "buildResources": "./assets/", "output": "./dist/", "app": "." }, "extraResources": [ { "from": "./extraResources/", "to": "extraResources", "filter": [ "**/*" ] } ] }, "license": "ISC", "devDependencies": { "cross-env": "^7.0.3", "electron": "^18.2.0", "electron-builder": "^23.0.3" }, "dependencies": { "crypto-js": "^4.1.1", "electron-json-storage": "^4.5.0" } }