-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.26 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.26 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
67
68
69
70
{
"name": "react-example",
"private": true,
"version": "2.0.0",
"type": "module",
"scripts": {
"dev": "vite --port=5000 --host=0.0.0.0",
"build": "vite build",
"preview": "vite preview",
"clean": "rm -rf dist",
"lint": "tsc --noEmit",
"cap:sync": "npm run build && cap sync android",
"cap:open": "cap open android",
"cap:run": "npm run build && cap sync android && cap run android",
"cap:icons": "capacitor-assets generate --android",
"android:build": "npm run build && cap sync android && npm run cap:icons && cd android && ./gradlew assembleRelease",
"android:debug": "npm run build && cap sync android && npm run cap:icons && cd android && ./gradlew assembleDebug"
},
"dependencies": {
"@capacitor-community/file-opener": "^8.0.0",
"@capacitor/android": "^8.2.0",
"@capacitor/browser": "^8.0.2",
"@capacitor/cli": "^8.2.0",
"@capacitor/core": "^8.2.0",
"@capacitor/filesystem": "^8.1.2",
"@capacitor/share": "^8.0.1",
"@fontsource/bagel-fat-one": "^5.2.7",
"@fontsource/caveat": "^5.2.8",
"@fontsource/dm-serif-display": "^5.2.8",
"@fontsource/inter": "^5.2.8",
"@fontsource/mochiy-pop-one": "^5.2.8",
"@fontsource/zen-maru-gothic": "^5.2.8",
"@google/genai": "^1.44.0",
"@tailwindcss/vite": "^4.1.14",
"@types/canvas-confetti": "^1.9.0",
"@vitejs/plugin-react": "^5.0.4",
"better-sqlite3": "^12.4.1",
"canvas-confetti": "^1.9.4",
"clsx": "^2.1.1",
"compare-versions": "^6.1.1",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"framer-motion": "^12.36.0",
"html2canvas": "^1.4.1",
"html2pdf.js": "^0.14.0",
"jspdf": "^4.2.0",
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"pdfjs-dist": "^5.5.207",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.13.1",
"recharts": "^3.8.0",
"tailwind-merge": "^3.5.0",
"vite": "^6.2.0"
},
"devDependencies": {
"@capacitor/assets": "^3.0.5",
"@types/express": "^4.17.21",
"@types/node": "^22.14.0",
"autoprefixer": "^10.4.21",
"tailwindcss": "^4.1.14",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"vite-plugin-pwa": "^1.2.0",
"workbox-window": "^7.4.0"
}
}