-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.49 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.49 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "privacy-radar",
"productName": "Privacy Radar",
"version": "1.0.0",
"description": "Privacy Radar - An Electron application for privacy monitoring",
"main": "./out/main/index.js",
"author": "example.com",
"homepage": "https://electron-vite.org",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"dev:renderer": "vite --config vite.renderer.config.ts --host 127.0.0.1 --port 4173",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps && electron-rebuild -f -w better-sqlite3",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "electron-vite build && electron-builder --mac",
"build:linux": "electron-vite build && electron-builder --linux",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"test": "npm run test:unit",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^4.0.0",
"@google/generative-ai": "^0.24.1",
"@preline/accordion": "^3.2.3",
"@preline/tree-view": "^3.2.3",
"@radix-ui/react-slot": "^1.2.4",
"better-sqlite3": "^12.4.1",
"cap": "^0.2.1",
"chart.js": "^4.5.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3": "^7.9.0",
"drizzle-orm": "^0.44.5",
"electron-updater": "^6.3.9",
"exceljs": "^4.4.0",
"file-saver": "^2.0.5",
"framer-motion": "^12.23.24",
"lucide-react": "^0.555.0",
"pino": "^10.0.0",
"ps-list": "^8.1.1",
"react-toastify": "^11.0.5",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron/rebuild": "^4.0.1",
"@playwright/test": "^1.56.0",
"@tailwindcss/vite": "^4.1.14",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.18.6",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"drizzle-kit": "^0.31.5",
"electron": "^37.2.3",
"electron-builder": "^25.1.8",
"electron-vite": "^4.0.0",
"eslint": "^9.31.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"jsdom": "^27.0.0",
"node-gyp": "^11.4.2",
"pino-pretty": "^13.1.1",
"playwright": "^1.56.0",
"prettier": "^3.6.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwindcss": "^4.1.14",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vite": "^7.0.5",
"vitest": "^3.2.4"
},
"build": {
"win": {
"icon": "resources/favicon.ico"
}
}
}