-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.21 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.21 KB
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
{
"name": "tsml-ui",
"version": "1.8",
"private": false,
"license": "MIT",
"type": "module",
"scripts": {
"lint": "prettier --check vite.config.ts src/ && eslint vite.config.ts src/",
"format": "prettier --write vite.config.ts src/",
"test": "vitest run",
"test-watch": "vitest",
"test-coverage": "vitest run --coverage",
"dev": "vite",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"serve": "serve public",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.2",
"@eslint/compat": "^2.0.0",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.59.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/leaflet": "^1.9.21",
"@types/luxon": "^3.7.1",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.0.16",
"baseline-browser-mapping": "^2.9.19",
"eslint": "^9.39.2",
"eslint-config-love": "^151.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.2.0",
"jsdom": "^29.0.1",
"prettier": "^3.7.4",
"rollup-plugin-visualizer": "^7.0.0",
"serve": "^14.2.5",
"terser": "^5.44.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.51.0",
"vite": "^8.0.5",
"vite-plugin-css-injected-by-js": "^4.0.1",
"vitest": "^4.0.16"
},
"dependencies": {
"@code4recovery/spec": "1.1.9",
"@emotion/react": "^11.14.0",
"deepmerge": "^4.3.1",
"leaflet": "^1.9.4",
"luxon": "^3.7.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-leaflet": "^5.0.0",
"react-router-dom": "^7.11.0"
}
}