-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.17 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
{
"name": "openradar",
"private": true,
"version": "0.8.0",
"description": "A map-first desktop weather radar with globe navigation and open data sources.",
"type": "module",
"engines": {
"node": "^22.13.0 || >=24.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run --coverage",
"test:watch": "vitest",
"test:e2e": "playwright test",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\"",
"check": "npm run format:check && npm run lint && npm run check:exports && npm run test && npm run build && npm run check:bundle",
"check:exports": "node scripts/unused-exports.mjs",
"check:bundle": "node scripts/bundle-budget.mjs",
"check:live": "node scripts/live-contracts.mjs",
"tauri": "tauri",
"release": "node scripts/release.mjs"
},
"dependencies": {
"@tauri-apps/api": "^2.8.0",
"@tauri-apps/plugin-deep-link": "^2.4.10",
"@tauri-apps/plugin-dialog": "2.7.3",
"@tauri-apps/plugin-log": "^2.9.1",
"@tauri-apps/plugin-notification": "^2.4.0",
"@tauri-apps/plugin-opener": "^2.5.5",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-store": "^2.4.3",
"@tauri-apps/plugin-updater": "^2.11.0",
"lucide-react": "^1.39.0",
"maplibre-gl": "^6.7.0",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"@tauri-apps/cli": "^2.8.0",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^26.4.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^6.0.5",
"@vitest/coverage-v8": "^4.1.11",
"esbuild": "^0.28.0",
"eslint": "^10.0.0",
"eslint-plugin-react-hooks": "^7.0.0",
"eslint-plugin-react-refresh": "^0.5.6",
"globals": "^17.12.0",
"jsdom": "^30.0.1",
"prettier": "^3.8.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.69.0",
"vite": "^8.2.1",
"vitest": "^4.1.7"
}
}