-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.41 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
{
"name": "utrecht-bereikbaarheid-frontend",
"version": "0.7.8",
"private": true,
"type": "module",
"dependencies": {
"@amsterdam/arm-core": "^1.0.0",
"@amsterdam/asc-assets": "^0.38.0",
"@amsterdam/asc-ui": "^0.38.0",
"@amsterdam/react-maps": "^1.1.1",
"@hookform/resolvers": "^3.9.1",
"@react-spring/web": "^9.7.5",
"@tanstack/react-query": "^4.35.7",
"@tanstack/react-query-devtools": "^4.35.7",
"axios": "^1.7.9",
"leaflet": "^1.9.4",
"leaflet.markercluster": "^1.5.3",
"lodash-es": "^4.17.21",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.54.0",
"react-router-dom": "^6.28.0",
"styled-components": "^5.3.10",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.5.2",
"@types/leaflet": "^1.9.15",
"@types/leaflet.markercluster": "^1.5.5",
"@types/lodash-es": "^4.17.12",
"@types/react": "^17.0.80",
"@types/react-dom": "^17.0.25",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-testing-library": "^7.1.1",
"globals": "^15.13.0",
"jsdom": "^25.0.1",
"mq-polyfill": "^1.1.8",
"msw": "^2.6.8",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"vite": "^6.0.3",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^2.1.8"
},
"overrides": {
"braces": "3.0.3",
"eslint-plugin-testing-library": {
"eslint": "$eslint"
}
},
"scripts": {
"start": "vite",
"lint": "eslint . --max-warnings 2",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest run --silent",
"test:watch": "vitest"
},
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"tabWidth": 2
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}