-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) ยท 2.99 KB
/
package.json
File metadata and controls
95 lines (95 loc) ยท 2.99 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
{
"name": "gamechu",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start -p 3035",
"prepare": "husky install",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"format": "prettier --write .",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@lexical/code": "^0.41.0",
"@lexical/headless": "^0.41.0",
"@lexical/history": "^0.41.0",
"@lexical/html": "^0.41.0",
"@lexical/link": "^0.41.0",
"@lexical/list": "^0.41.0",
"@lexical/markdown": "^0.41.0",
"@lexical/react": "^0.41.0",
"@lexical/rich-text": "^0.41.0",
"@lexical/utils": "^0.41.0",
"@prisma/client": "^6.7.0",
"@tanstack/react-query": "^5.95.2",
"bcryptjs": "^3.0.2",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"focus-trap": "^8.0.1",
"focus-trap-react": "^12.0.0",
"framer-motion": "^12.15.0",
"ioredis": "^5.8.2",
"js-cookie": "^3.0.5",
"lexical": "^0.41.0",
"lodash.chunk": "^4.2.0",
"lottie-react": "^2.4.1",
"lucide": "^0.525.0",
"lucide-react": "^0.511.0",
"next": "^15.5.12",
"next-auth": "^4.24.11",
"pino": "^10.3.1",
"react": "^19.0.0",
"react-datepicker": "^8.4.0",
"react-dom": "^19.0.0",
"react-simple-typewriter": "^5.0.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tailwind-merge": "^3.3.0",
"tailwind-variants": "^1.0.0",
"zod": "^4.3.6",
"zustand": "^5.0.4"
},
"prisma": {
"seed": "npx tsx prisma/seed.ts"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.58.2",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/js-cookie": "^3.0.6",
"@types/jsdom": "^28.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.0",
"autoprefixer": "^10.4.21",
"dotenv": "^16.5.0",
"eslint": "^9",
"eslint-config-next": "15.3.2",
"eslint-config-prettier": "^10.1.5",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"pino-pretty": "^13.1.3",
"postcss": "^8.5.3",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"prisma": "^6.7.0",
"tailwindcss": "^3.4.17",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^4.1.0"
}
}