-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.69 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.69 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
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack --experimental-https",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"lint:all": "npm run lint && npm run type-check",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:all": "npm run test && npm run test:e2e"
},
"dependencies": {
"@auth0/nextjs-auth0": "4.14.0",
"@types/facebook-js-sdk": "3.3.12",
"@vercel/analytics": "1.5.0",
"@vercel/postgres": "0.10.0",
"@vercel/speed-insights": "1.2.0",
"ably": "2.12.0",
"axios": "^1.14.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.577.0",
"next": "^15.5.14",
"react": "19.1.2",
"react-dom": "19.1.2",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@tailwindcss/postcss": "4.1.13",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "24.3.1",
"@types/react": "19.1.12",
"@types/react-dom": "19.1.9",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "9",
"eslint-config-next": "15.5.3",
"jsdom": "^29.0.1",
"postcss": "8",
"tailwindcss": "4.1.13",
"vitest": "^4.1.2"
},
"overrides": {
"@types/react": "19.1.12",
"@types/react-dom": "19.1.9",
"js-yaml": "4.1.1",
"srvx": ">=0.11.13",
"path-to-regexp": ">=8.4.0",
"undici": ">=7.24.5",
"minimatch": ">=10.2.3",
"tar": ">=7.5.11",
"smol-toml": ">=1.6.1",
"@tootallnate/once": ">=3.0.1"
}
}