-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.3 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.3 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
71
72
{
"name": "commit-ai",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:analyze": "vite build --mode analyze",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "vite preview",
"typecheck": "tsc --noEmit -p tsconfig.app.json",
"prebuild": "npm run typecheck",
"ios:sync": "npx cap sync ios",
"ios:build": "npm run build && npx cap sync ios",
"ios:open": "npx cap open ios",
"android:sync": "npx cap sync android",
"android:build": "npm run build && npx cap sync android",
"android:open": "npx cap open android",
"android:run": "npx cap run android",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"types:generate": "npx supabase gen types typescript --local > src/lib/database.types.ts"
},
"dependencies": {
"@capacitor/android": "^8.0.2",
"@capacitor/app": "^8.0.0",
"@capacitor/cli": "^8.0.2",
"@capacitor/core": "^8.0.2",
"@capacitor/ios": "^8.0.2",
"@capacitor/keyboard": "^8.0.0",
"@capacitor/local-notifications": "^8.0.2",
"@capacitor/preferences": "^8.0.0",
"@capacitor/splash-screen": "^8.0.0",
"@capacitor/status-bar": "^8.0.0",
"@capgo/capacitor-native-biometric": "^8.3.5",
"@supabase/supabase-js": "^2.57.4",
"lucide-react": "^0.344.0",
"mermaid": "^11.12.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.9.6",
"react-simple-code-editor": "^0.14.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.18",
"baseline-browser-mapping": "^2.10.8",
"eslint": "^9.9.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"jsdom": "^28.1.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"vite": "^5.4.21",
"vitest": "^4.1.0"
}
}