-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.81 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "gps-tools-frontend",
"private": true,
"version": "0.16.9",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"postbuild": "rm dist/mockServiceWorker.js && rm -rf dist/mocks",
"test": "vitest",
"test:e2e": "npx playwright test",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --ext ts,tsx --fix",
"format": "prettier --check ./src",
"format:fix": "prettier --write ./src",
"check": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 && prettier --check ./src && vitest --watch=false",
"check:fix": "eslint . --ext ts,tsx --fix && prettier --write ./src && vitest --watch=false",
"preview": "vite preview",
"upgrade": "ncu -u",
"upgrade:patches": "ncu -u --target patch",
"upgrade:minor": "ncu -u --target minor"
},
"dependencies": {
"@fontsource/roboto": "^5.0.13",
"@hello-pangea/dnd": "^16.6.0",
"@tanstack/react-query": "^5.48.0",
"@tanstack/react-query-devtools": "^5.48.0",
"@tanstack/react-router": "^1.42.0",
"@types/geojson": "^7946.0.14",
"@types/leaflet": "^1.9.12",
"@uidotdev/usehooks": "^2.4.1",
"axios": "^1.7.2",
"dompurify": "^3.1.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"gpxparser": "^3.0.8",
"hamburger-react": "^2.5.1",
"leaflet": "^1.9.4",
"prettier": "^3.3.2",
"react": "^18.3.1",
"react-contenteditable": "^3.3.7",
"react-daisyui": "^5.0.0",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-icons": "^5.2.1",
"react-leaflet": "^4.2.1",
"react-leaflet-custom-control": "^1.4.0",
"react-router-dom": "^6.24.0",
"react-use": "^17.5.0",
"sanitize-html": "^2.13.0",
"uuid": "^10.0.0",
"vite-plugin-package-version": "^1.1.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.9.1",
"@playwright/test": "^1.45.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tanstack/eslint-plugin-query": "^5.47.0",
"@tanstack/router-devtools": "^1.42.0",
"@tanstack/router-vite-plugin": "^1.41.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/dompurify": "^3.0.5",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/sanitize-html": "^2.11.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"autoprefixer": "^10.4.19",
"cz-conventional-changelog": "^3.3.0",
"daisyui": "^4.12.10",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"msw": "^2.3.1",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2",
"vite": "^5.3.2",
"vitest": "^1.6.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
],
"release": {
"branches": [
"main"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
},
"msw": {
"workerDirectory": [
"public"
]
}
}