-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·47 lines (47 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·47 lines (47 loc) · 1.36 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
{
"name": "mobile-gym",
"private": true,
"version": "0.1.0",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint os/ apps/ && node scripts/lint_store_getters.mjs",
"build:web-css": "tailwindcss -i web/tailwind.input.css -o web/tailwind.css --minify",
"watch:web-css": "tailwindcss -i web/tailwind.input.css -o web/tailwind.css --watch"
},
"dependencies": {
"@googlemaps/js-api-loader": "^2.0.2",
"@sqlite.org/sqlite-wasm": "^3.53.0-build1",
"@tanstack/react-virtual": "^3.13.19",
"@types/google.maps": "^3.58.1",
"immer": "^11.1.4",
"leaflet": "^1.9.4",
"lucide-react": "^0.561.0",
"qrcode": "^1.5.4",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router-dom": "^7.10.1",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tailwindcss/cli": "^4.2.0",
"@types/node": "^22.14.0",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.0.0",
"eslint": "^10.0.2",
"eslint-plugin-react-hooks": "^7.1.1",
"puppeteer": "^24.34.0",
"tailwindcss": "^4.2.0",
"typescript": "~5.8.2",
"typescript-eslint": "^8.56.1",
"vite": "^6.2.0",
"vitest": "^4.0.18"
}
}