-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.17 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
{
"name": "foideparcurs",
"version": "0.1.0",
"private": true,
"license": "UNLICENSED",
"scripts": {
"dev": "next dev -p 3100",
"build": "next build",
"start": "next start -p 3100",
"lint": "next lint --max-warnings 0",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:chromium": "playwright test --project=chromium",
"test:e2e:firefox": "playwright test --project=firefox",
"test:e2e:webkit": "playwright test --project=webkit",
"test:e2e:mobile": "playwright test --project=chromium --project=\"Mobile Chrome\" --workers=15",
"test:e2e:report": "playwright show-report",
"test:all": "npm run lint && npm run type-check && npm run test && npm run test:e2e:chromium",
"seed:test-user": "tsx scripts/seed-test-user.ts",
"seed:demo": "tsx scripts/seed-demo.ts",
"migrate:firebase-users": "tsx scripts/migrate-firebase-users-to-betterauth.ts",
"verify:storage-migration": "tsx scripts/verify-storage-migration.ts"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@hookform/resolvers": "^3.3.2",
"@prisma/client": "^6.1.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.2.4",
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/react-table": "^8.10.7",
"better-auth": "^1.6.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"geist": "^1.3.1",
"jose": "^6.2.3",
"lucide-react": "^0.469.0",
"next": "15.1.3",
"nodemailer": "^6.10.1",
"pino": "^10.0.0",
"pino-pretty": "^13.1.1",
"react": "18.3.1",
"react-day-picker": "^8.10.1",
"react-dom": "18.3.1",
"sonner": "^1.7.2",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@playwright/test": "^1.55.1",
"@shadcn/ui": "^0.0.4",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/nodemailer": "^8.0.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.0.4",
"dotenv": "^17.2.3",
"eslint": "^9.36.0",
"eslint-config-next": "^15.5.4",
"happy-dom": "^19.0.2",
"jsdom": "^27.0.0",
"playwright": "^1.55.1",
"postcss": "^8",
"prisma": "^6.1.0",
"tailwindcss": "^3.3.0",
"tsx": "^4.22.4",
"typescript": "^5",
"vitest": "^3.2.4"
}
}