-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.06 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.06 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
{
"name": "empatify",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -H 0.0.0.0",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test:unit": "vitest run",
"test:component": "vitest run --dir tests/component",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed",
"test:coverage": "vitest run --coverage",
"e2e:report": "playwright show-report",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:migrate:messaging": "node scripts/run-messaging-migration.js",
"db:activate-pro-plan": "node scripts/activate-pro-plan.js",
"db:check-pro-plan": "node scripts/check-pro-plan-column.js"
},
"dependencies": {
"@supabase/ssr": "^0.7.0",
"@supabase/supabase-js": "^2.81.1",
"clsx": "^2.1.1",
"cookie": "^1.0.2",
"lucide-react": "^0.553.0",
"motion": "^12.23.24",
"next": "^16.1.4",
"next-intl": "^4.3.4",
"postgres": "^3.4.7",
"qrcode.react": "^4.2.0",
"react": "19.2.1",
"react-dom": "19.2.1",
"spotify-web-api-node": "^5.0.2",
"stripe": "^19.3.1",
"tailwind-merge": "^3.4.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.2",
"@cucumber/cucumber": "^12.1.0",
"@eslint/eslintrc": "^3.1.0",
"@playwright/test": "^1.54.2",
"@tailwindcss/postcss": "^4.0.4",
"@testing-library/jest-dom": "^6.7.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20.14.10",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"axe-core": "^4.10.3",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.31.7",
"drizzle-orm": "^0.44.7",
"eslint": "^9.14.0",
"eslint-config-next": "15.4.8",
"jsdom": "^26.1.0",
"msw": "^2.10.5",
"supabase": "^2.58.5",
"tailwindcss": "^4.0.4",
"typescript": "^5.7.2",
"vitest": "^3.2.4"
}
}