-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.69 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
{
"name": "ddang",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 30",
"preview": "vite preview",
"pwa": "pwa-assets-generator --preset minimal public/test.svg",
"format": "prettier --check --ignore-path .gitignore \"**/*.{ts,tsx}\"",
"format:fix": "prettier --write --ignore-path .gitignore \"**/*.{ts,tsx}\"",
"build-and-test": "npm run build && lhci autorun",
"gen-pwa": "pwa-assets-generator --preset minimal public/favicon.svg"
},
"dependencies": {
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/material": "^6.1.9",
"@mui/styled-engine-sc": "^6.1.9",
"@stomp/stompjs": "^7.0.0",
"@tanstack/react-query": "^5.62.2",
"@tanstack/react-query-devtools": "^5.62.2",
"d3": "^7.9.0",
"framer-motion": "^11.13.1",
"ios-style-picker": "^0.0.6",
"ol": "^10.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.1.2",
"react-helmet-async": "^2.0.5",
"react-icons": "^5.3.0",
"react-router-dom": "^6.28.0",
"react-textarea-autosize": "^8.5.5",
"sockjs-client": "^1.6.1",
"styled-components": "^6.1.13",
"styled-reset": "^4.5.2",
"zustand": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/d3": "^7.4.3",
"@types/node": "^22.9.0",
"@types/ol": "^7.0.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/react-textarea-autosize": "^8.0.0",
"@types/sockjs-client": "^1.5.4",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vite-pwa/assets-generator": "^0.2.6",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.6",
"globals": "^15.11.0",
"lighthouse": "^12.2.2",
"prettier": "^3.3.3",
"typescript": "^5.2.2",
"typescript-eslint": "^8.11.0",
"vite": "^5.2.10",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-compression2": "^1.3.1",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-mkcert": "^1.17.6",
"vite-plugin-pwa": "^0.20.5",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.2",
"workbox-core": "^7.1.0",
"workbox-precaching": "^7.1.0",
"workbox-routing": "^7.1.0",
"workbox-strategies": "^7.1.0",
"workbox-window": "^7.1.0"
},
"overrides": {
"sharp": "0.32.6",
"sharp-ico": "0.1.5"
}
}