-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.73 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.73 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
{
"name": "finetrack",
"private": true,
"version": "0.1.2",
"type": "module",
"description": "Track vehicle fines, charges, MOT, insurance and more in one place",
"scripts": {
"dev": "vite",
"build": "node sync-version.cjs && tsc && vite build",
"lint": "eslint .",
"preview": "vite preview",
"cap:sync": "npx cap sync",
"cap:build": "node sync-version.cjs && npm run UpdateChangelog && npm run build && npx cap sync",
"cap:android": "npx cap open android",
"cap:run:android": "npx cap run android",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"UpdateChangelog": "node scripts/UpdateChangelog.cjs"
},
"dependencies": {
"@capacitor/android": "^7.4.3",
"@capacitor/cli": "^7.4.3",
"@capacitor/core": "^7.4.3",
"@capacitor/local-notifications": "^7.0.3",
"@capacitor/status-bar": "^7.0.3",
"date-fns": "^3.6.0",
"lucide-react": "^0.436.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.0"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"conventional-changelog": "^7.1.1",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vite-plugin-pwa": "^0.20.5",
"workbox-window": "^7.3.0"
},
"overrides": {
"glob": "^10.4.5"
}
}