-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.18 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
{
"name": "heddy",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"ios": "npx cap add ios",
"android": "npx cap add android",
"dev": "vite",
"dev:desktop": "vite --config vite.config.desktop.ts",
"dev:mobile": "vite --config vite.config.mobile.ts",
"dev:android": "CAPACITOR_LIVE=true npx cap sync android && npx cap open android",
"dev:ios": "CAPACITOR_LIVE=true npx cap sync ios && npx cap open ios",
"build:android": "pnpm build:mobile && npx cap sync android && npx cap open android",
"build:ios": "pnpm build:mobile && npx cap sync ios && npx cap open ios",
"build": "tsc -b && vite build",
"build:desktop": "tsc -b && vite build --config vite.config.desktop.ts",
"build:mobile": "tsc -b && vite build --config vite.config.mobile.ts",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"preview": "vite preview",
"preview:desktop": "vite preview --config vite.config.desktop.ts",
"preview:mobile": "vite preview --config vite.config.mobile.ts"
},
"dependencies": {
"@capacitor/android": "^8.3.4",
"@capacitor/camera": "^8.2.0",
"@capacitor/cli": "^8.3.3",
"@capacitor/core": "^8.3.3",
"@capacitor/ios": "^8.3.4",
"@heddy/api": "link:./pakages/api",
"@heddy/design-tokens": "link:./pakages/design-tokens",
"@tanstack/react-query": "^5.100.10",
"@yudiel/react-qr-scanner": "^2.6.0",
"axios": "^1.16.0",
"capacitor-secure-storage-plugin": "^0.13.0",
"qrcode.react": "^4.2.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-router-dom": "^7.15.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.3.0",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.2.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.5.0",
"prettier": "3.8.3",
"tailwindcss": "^4.3.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.10",
"vite-plugin-svgr": "^5.2.0"
}
}