| { | |
| "name": "computer-auditor", | |
| "version": "1.0.0", | |
| "private": true, | |
| "description": "Computer system audit dashboard", | |
| "main": "dist-electron/main.js", | |
| "scripts": { | |
| "dev": "npm run build:electron && concurrently -k \"npm run dev:vite\" \"npm run dev:electron\"", | |
| "dev:vite": "vite", | |
| "dev:electron": "wait-on tcp:5173 && cross-env VITE_DEV_SERVER_URL=http://localhost:5173 electron .", | |
| "build:electron": "node node_modules/typescript/lib/tsc.js -p electron/tsconfig.json", | |
| "build": "node node_modules/typescript/lib/tsc.js -p electron/tsconfig.json && vite build", | |
| "start": "electron .", | |
| "preview:app": "cross-env NODE_ENV=production electron ." | |
| }, | |
| "dependencies": { | |
| "@types/node": "^22.10.1", | |
| "@types/react": "^18.3.12", | |
| "@types/react-dom": "^18.3.1", | |
| "@vitejs/plugin-react": "^4.3.4", | |
| "concurrently": "^9.1.0", | |
| "cross-env": "^7.0.3", | |
| "electron": "^33.2.0", | |
| "react": "^18.3.1", | |
| "react-dom": "^18.3.1", | |
| "react-icons": "^5.4.0", | |
| "typescript": "^5.6.3", | |
| "vite": "^5.4.11", | |
| "wait-on": "^8.0.1" | |
| } | |
| } | |