-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.77 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
{
"name": "morphiq",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "tsc -b && vite build",
"check:api": "node scripts/check-api.mjs",
"deploy:api": "vercel --prod",
"deploy:mobile": "node scripts/deploy-android.mjs",
"dev": "vite",
"icons": "node scripts/generate-icons.mjs",
"lint": "eslint .",
"preview": "vite preview",
"typecheck": "tsc -b",
"test": "vitest run",
"test:e2e": "npx playwright test",
"test:e2e:report": "npx playwright show-report",
"test:e2e:ui": "npx playwright test --ui"
},
"dependencies": {
"@capacitor/app": "^8.1.1",
"@capacitor/local-notifications": "^8.2.0",
"@capacitor/push-notifications": "^8.1.2",
"@capgo/capacitor-social-login": "^8.3.39",
"dexie": "^4.4.2",
"dexie-react-hooks": "^4.4.0",
"lucide-react": "^1.16.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"recharts": "^3.8.1",
"zustand": "^5.0.13"
},
"devDependencies": {
"@capacitor/android": "^8.3.4",
"@capacitor/cli": "^8.3.4",
"@capacitor/core": "^8.3.4",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.12.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/recharts": "^1.8.29",
"@vitejs/plugin-basic-ssl": "^2.3.0",
"@vitejs/plugin-react": "^6.0.1",
"capacitor-health": "^8.1.2",
"eslint": "^10.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"fake-indexeddb": "^6.2.5",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"typescript": "~6.0.2",
"typescript-eslint": "^8.59.2",
"vite": "^8.0.12",
"vitest": "^4.1.7"
}
}