-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.59 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
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
{
"name": "frigate-config-gui",
"version": "0.1.0",
"description": "Frigate NVR Configuration GUI",
"main": "dist/main.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"type-check": "tsc --noEmit",
"electron:build": "electron-builder"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.3",
"@mui/material": "^5.15.3",
"electron-store": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"yaml": "^2.3.4"
},
"devDependencies": {
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@types/testing-library__react": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vitejs/plugin-react": "^4.2.1",
"electron": "^28.1.1",
"electron-builder": "^24.9.1",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-electron": "^0.15.5",
"zod": "^3.24.2"
},
"build": {
"appId": "com.frigateNVR.ConfigGUI",
"productName": "Frigate Config GUI",
"directories": {
"output": "dist"
},
"files": [
"dist/**/*",
"package.json"
],
"linux": {
"target": [
"AppImage",
"deb",
"rpm",
"snap"
],
"category": "Utility"
}
}
}