-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 4.04 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
125
126
127
128
129
130
131
132
{
"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 . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint . --fix",
"format": "prettier --check ./src",
"format:fix": "prettier --write ./src",
"check": "eslint . --report-unused-disable-directives --max-warnings 0 && prettier --check ./src && vitest --watch=false",
"check:fix": "eslint . --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.1.1",
"@hello-pangea/dnd": "^18.0.1",
"@tanstack/react-query": "^5.66.0",
"@tanstack/react-query-devtools": "^5.66.0",
"@tanstack/react-router": "^1.105.0",
"@types/geojson": "^7946.0.16",
"@types/leaflet": "^1.9.16",
"@uidotdev/usehooks": "^2.4.1",
"axios": "^1.7.9",
"dompurify": "^3.2.4",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"gpxparser": "^3.0.8",
"hamburger-react": "^2.5.2",
"leaflet": "^1.9.4",
"prettier": "^3.5.1",
"react": "^19.0.0",
"react-contenteditable": "^3.3.7",
"react-dom": "^19.0.0",
"react-dropzone": "^14.3.5",
"react-icons": "^5.4.0",
"react-leaflet": "^5.0.0",
"react-router-dom": "^7.1.5",
"react-use": "^17.6.0",
"sanitize-html": "^2.14.0",
"uuid": "^11.0.5",
"vite-plugin-package-version": "^1.1.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@eslint/compat": "^1.2.6",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@playwright/test": "^1.50.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tailwindcss/postcss": "^4.0.6",
"@tanstack/eslint-plugin-query": "^5.66.1",
"@tanstack/router-devtools": "^1.105.0",
"@tanstack/router-vite-plugin": "^1.105.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/dompurify": "^3.2.0",
"@types/node": "^22.13.4",
"@types/prop-types": "^15.7.14",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/sanitize-html": "^2.13.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"@vitejs/plugin-react-swc": "^3.8.0",
"cz-conventional-changelog": "^3.3.0",
"daisyui": "^5.0.0-beta.7",
"eslint": "^9.20.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"msw": "^2.7.0",
"postcss": "^8.5.2",
"tailwindcss": "^4.0.6",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vitest": "^3.0.5"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.34.7",
"@swc/core-linux-x64-gnu": "^1.10.16",
"@tailwindcss/oxide-linux-x64-gnu": "^4.0.6",
"lightningcss-linux-x64-gnu": "^1.29.1"
},
"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"
]
}
}