-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.92 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
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "garden-planner",
"version": "1.0.0-alpha1",
"private": true,
"license": "MIT",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"",
"lint": "cross-env NODE_ENV=development eslint . --cache --ext .ts --ext .tsx"
},
"dependencies": {
"@emotion/react": "11.13.5",
"@emotion/styled": "11.13.5",
"@mui/icons-material": "5.16.8",
"@mui/lab": "5.0.0-alpha.174",
"@mui/material": "5.16.8",
"@mui/system": "5.16.8",
"@mui/x-date-pickers": "7.22.3",
"@reduxjs/toolkit": "2.3.0",
"@vitejs/plugin-react": "4.3.4",
"date-fns": "3.6.0",
"object-hash": "3.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "9.1.2",
"react-router": "6.28.0",
"react-router-dom": "6.28.0",
"react-window": "1.8.10",
"vite": "5.4.11",
"vite-plugin-pwa": "0.21.0",
"vite-tsconfig-paths": "4.3.2",
"web-vitals": "3.5.2",
"workbox-background-sync": "7.3.0",
"workbox-broadcast-update": "7.3.0",
"workbox-build": "7.3.0",
"workbox-cacheable-response": "7.3.0",
"workbox-core": "7.3.0",
"workbox-expiration": "7.3.0",
"workbox-google-analytics": "7.3.0",
"workbox-navigation-preload": "7.3.0",
"workbox-precaching": "7.3.0",
"workbox-range-requests": "7.3.0",
"workbox-routing": "7.3.0",
"workbox-strategies": "7.3.0",
"workbox-streams": "7.3.0",
"workbox-window": "7.3.0"
},
"devDependencies": {
"@types/node": "18.19.67",
"@types/object-hash": "3.0.6",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/react-router": "5.1.20",
"@types/react-router-dom": "5.3.3",
"@types/react-window": "1.8.8",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-compat": "6.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"prettier": "3.4.1",
"typescript": "5.7.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"overrides": [
{
"files": [
".prettierrc",
".eslintrc"
],
"options": {
"parser": "json"
}
}
],
"trailingComma": "none",
"singleQuote": true,
"printWidth": 120,
"endOfLine": "lf"
},
"resolutions": {
"@types/react": "18.3.12"
},
"engines": {
"node": ">=18.18 <19"
}
}