-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.6 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
{
"name": "owo-flight-assistant-web",
"private": true,
"version": "1.2.2-beta",
"type": "module",
"description": "OwO! FlightAssistant — Web GUI (React port of the Flutter modular flight assistant)",
"license": "CC-BY-NC-SA-4.0",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit -p tsconfig.json",
"mock": "node tools/mock-middleware.mjs",
"check:arch": "node scripts/check-architecture.mjs",
"check:i18n": "node scripts/check-i18n.mjs",
"check:version": "node scripts/check-version-sync.mjs",
"check": "npm run check:version && npm run check:arch && npm run check:i18n && npm run lint && npm run typecheck && npm run test",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --max-warnings=0"
},
"dependencies": {
"echarts": "^5.5.1",
"idb-keyval": "^6.2.1",
"leaflet": "^1.9.4",
"material-symbols": "^0.28.1",
"react": "^19.1.0",
"react-colorful": "^5.6.1",
"react-dom": "^19.1.0",
"sweetalert2": "^11.26.25",
"zustand": "^5.0.3"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/leaflet": "^1.9.16",
"@types/node": "^26.1.2",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.39.5",
"eslint-plugin-react-hooks": "^5.2.0",
"jsdom": "^30.0.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.66.0",
"vite": "^6.0.11",
"vitest": "^3.2.7"
}
}