-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 3.04 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
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
{
"name": "home-assistant-tray-menu",
"productName": "Home Assistant Tray Menu",
"version": "1.1.0",
"description": "Home Assistant Tray App for Windows Quick Actions",
"main": ".webpack/main",
"repository": "github:pascalluginbuehl/home-assistant-tray-menu",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint ./src",
"prepare": "husky install"
},
"keywords": [],
"author": {
"name": "Pascal Luginbühl",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^6.2.1",
"@electron-forge/maker-deb": "^6.2.1",
"@electron-forge/maker-rpm": "^6.2.1",
"@electron-forge/maker-squirrel": "^6.2.1",
"@electron-forge/maker-zip": "^6.2.1",
"@electron-forge/plugin-webpack": "^6.2.1",
"@types/react": "^18.2.16",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vercel/webpack-asset-relocator-loader": "1.7.3",
"autoprefixer": "^10.4.14",
"css-loader": "^6.8.1",
"electron": "25.3.1",
"eslint": "^8.45.0",
"eslint-plugin-import": "^2.27.5",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"node-loader": "^2.0.0",
"postcss-loader": "^7.3.3",
"sass": "^1.64.1",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.3",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "~5.1.6"
},
"dependencies": {
"@electron-forge/publisher-github": "^6.2.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.1.1",
"@mdi/js": "^7.2.96",
"@mdi/react": "^1.6.1",
"@mdi/svg": "^7.2.96",
"@mui/icons-material": "^5.14.1",
"@mui/material": "^5.14.2",
"@radix-ui/react-accordion": "^1.1.2",
"@tanstack/react-query": "^4.32.0",
"@types/react-beautiful-dnd": "^13.1.4",
"ajv": "^8.12.0",
"axios": "^1.4.0",
"clsx": "^2.0.0",
"electron-squirrel-startup": "^1.0.0",
"electron-store": "^8.1.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"i18next": "^23.3.0",
"invert-color": "^2.0.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-colorful": "^5.6.1",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.10",
"react-fast-compare": "^3.2.2",
"react-hook-form": "^7.45.2",
"react-hook-form-mui": "^6.4.2",
"react-i18next": "^13.0.2",
"react-router-dom": "^6.14.2",
"react-use": "^17.4.0",
"tailwind-merge": "^1.14.0",
"use-debounce": "^9.0.4",
"yup": "^1.2.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --max-warnings=0"
}
}