-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.84 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.84 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@eikon/react",
"private": true,
"version": "0.0.0-private",
"description": "React 19 + Tailwind v4 + animate-ui feature-first starter template (consumed by create-eikon-react).",
"type": "module",
"engines": {
"node": ">=20.10.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.12.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:check": "tsc -b --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\" \"__tests__/**/*.{ts,tsx}\"",
"typecheck": "tsc -b --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:structure": "vitest run __tests__/structure",
"test:browser": "vitest run --config vitest.browser.config.ts",
"test:browser:setup": "playwright install chromium",
"check": "pnpm run typecheck && pnpm run lint && pnpm run test",
"ci": "pnpm run typecheck && pnpm run lint && pnpm run test && pnpm run build",
"tauri": "pnpm --filter \"./apps/desktop\" tauri",
"tauri:dev": "pnpm --filter \"./apps/desktop\" dev",
"tauri:build": "pnpm --filter \"./apps/desktop\" build",
"cap": "pnpm --filter \"./apps/mobile\" cap",
"cap:sync": "pnpm --filter \"./apps/mobile\" sync",
"cap:add:ios": "pnpm --filter \"./apps/mobile\" add:ios",
"cap:add:android": "pnpm --filter \"./apps/mobile\" add:android",
"cap:open:ios": "pnpm --filter \"./apps/mobile\" open:ios",
"cap:open:android": "pnpm --filter \"./apps/mobile\" open:android",
"cap:run:ios": "pnpm --filter \"./apps/mobile\" run:ios",
"cap:run:android": "pnpm --filter \"./apps/mobile\" run:android"
},
"dependencies": {
"@hookform/resolvers": "^5.4.0",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-radio-group": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.8",
"@supabase/supabase-js": "^2.49.4",
"@tanstack/react-query": "^5.66.0",
"@tanstack/react-virtual": "^3.13.24",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"i18next": "^25.2.1",
"i18next-browser-languagedetector": "^8.1.0",
"i18next-resources-to-backend": "^1.2.1",
"lucide-react": "^0.536.0",
"motion": "^11.18.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.77.0",
"react-i18next": "^15.5.2",
"react-router-dom": "^7.1.5",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"web-vitals": "^5.2.0",
"zod": "^4.4.3",
"zustand": "^5.0.3"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@tailwindcss/vite": "^4.0.6",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.1",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/browser": "4.1.7",
"@vitest/coverage-v8": "4.1.7",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"happy-dom": "^20.8.9",
"playwright": "^1.50",
"tailwindcss": "^4.0.6",
"typescript": "^5.6.3",
"typescript-eslint": "^8.23.0",
"vite": "^6.1.0",
"vitest": "4.1.7"
}
}