-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.44 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
{
"name": "bussen-companion",
"private": true,
"version": "1.7.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ci": "vitest run",
"version:check": "node scripts/resolve-version-code.cjs --check",
"version:sync": "node scripts/resolve-version-code.cjs --write",
"version:bump": "node scripts/resolve-version-code.cjs --bump",
"cap:sync": "npm run build && npx cap sync",
"cap:android": "npm run build && npx cap sync android",
"android": "npm run cap:android && npx cap open android"
},
"dependencies": {
"@capacitor-community/admob": "^8.0.0",
"@capacitor/camera": "^8.0.2",
"@capacitor/core": "^8.2.0",
"@capacitor/haptics": "^8.0.1",
"@capacitor/status-bar": "^8.0.1",
"framer-motion": "^13.1.1",
"lucide-react": "^0.554.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"zustand": "^5.0.15"
},
"devDependencies": {
"@capacitor/android": "^8.3.3",
"@capacitor/cli": "^8.2.0",
"@tailwindcss/vite": "^4.3.3",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@types/node": "^22.14.0",
"@vitejs/plugin-react": "^5.0.0",
"jsdom": "^30.0.1",
"shadcn": "^4.13.0",
"tailwindcss": "^4.3.3",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vitest": "^4.1.11"
}
}