-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
108 lines (108 loc) · 3.03 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
{
"name": "fitness-dashboard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"postinstall": "patch-package",
"dev-e2e": "cross-env NODE_ENV=test next dev -p 3100",
"build-e2e": "cross-env NODE_ENV=test next build",
"serve-e2e": "npx serve@latest out -l 3100",
"prepare": "husky"
},
"dependencies": {
"@badgateway/oauth2-client": "^2.3.0",
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.20",
"@mui/lab": "^5.0.0-alpha.170",
"@mui/material": "^5.15.20",
"@mui/material-nextjs": "^5.15.11",
"@mui/x-charts": "^7.7.1",
"@mui/x-data-grid": "^7.9.0",
"@mui/x-date-pickers": "^7.7.1",
"@tanstack/query-core": "^5.48.0",
"@tanstack/react-query": "^5.48.0",
"@tmcw/togeojson": "^5.8.1",
"@turf/turf": "^7.0.0",
"@visx/visx": "^3.11.0",
"chance": "^1.1.12",
"cross-env": "^7.0.3",
"csv-stringify": "^6.5.1",
"d3-array": "^3.2.4",
"d3-scale": "^4.0.2",
"dayjs": "^1.11.11",
"dompurify": "^3.1.6",
"es-toolkit": "^1.16.0",
"gridstack": "^10.2.0",
"husky": "^9.1.4",
"immer": "^10.1.1",
"immutable": "^4.3.6",
"jotai": "^2.8.3",
"jotai-effect": "^1.0.0",
"jotai-location": "^0.5.5",
"jotai-scope": "^0.6.0",
"jotai-tanstack-query": "^0.8.5",
"jwt-decode": "^4.0.0",
"lint-staged": "^15.2.8",
"maplibre-gl": "^4.5.0",
"material-ui-confirm": "^3.0.16",
"material-ui-popup-state": "^5.1.2",
"mui-sonner": "^1.0.0",
"next": "^14.2.21",
"p-queue": "^8.0.1",
"patch-package": "^8.0.0",
"react": "^18",
"react-day-picker": "^9.0.8",
"react-dom": "^18",
"react-error-boundary": "^4.0.13",
"react-hook-form": "^7.52.0",
"react-hook-form-mui": "^7.0.1",
"react-hydration-provider": "^2.1.0",
"react-map-gl": "^7.1.7",
"react-resizable-panels": "^2.0.21",
"react-use": "^17.5.0",
"svg-plant": "^2.0.5",
"typescript-eslint": "^7.17.0",
"usehooks-ts": "^3.1.0",
"wonka": "^6.3.4"
},
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@hookform/devtools": "^4.3.1",
"@playwright/test": "^1.45.3",
"@testing-library/react": "^16.0.0",
"@types/chance": "^1.1.6",
"@types/d3-array": "^3.2.1",
"@types/d3-scale": "^4.0.8",
"@types/dompurify": "^3.0.5",
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"babel-jest": "^29.7.0",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"prettier": "^2.8.8",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.5",
"typescript": "^5",
"whatwg-fetch": "^3.6.20"
},
"lint-staged": {
"*.(ts|tsx)": [
"eslint",
"prettier --write"
]
}
}