-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.46 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.46 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
106
107
108
109
110
111
112
113
114
115
{
"name": "solvesk",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:seed": "tsx src/scripts/seed.ts",
"db:seed:production": "tsx src/scripts/seed-production.ts",
"test": "vitest run",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "npx playwright test",
"test:e2e:list": "npx playwright test --reporter=list"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,css}": [
"prettier --write"
]
},
"dependencies": {
"@auth/drizzle-adapter": "^1.11.1",
"@hookform/resolvers": "^5.2.2",
"@react-email/components": "^1.0.4",
"@t3-oss/env-nextjs": "^0.13.10",
"@tanstack/react-query": "^5.90.17",
"@tanstack/react-query-devtools": "^5.91.2",
"@tiptap/extension-code-block-lowlight": "^3.19.0",
"@tiptap/extension-image": "^3.15.3",
"@tiptap/extension-link": "^3.18.0",
"@tiptap/extension-mention": "^3.15.3",
"@tiptap/extension-placeholder": "^3.15.3",
"@tiptap/extension-table": "^3.18.0",
"@tiptap/extension-table-cell": "^3.18.0",
"@tiptap/extension-table-header": "^3.18.0",
"@tiptap/extension-table-row": "^3.18.0",
"@tiptap/extension-task-item": "^3.18.0",
"@tiptap/extension-task-list": "^3.18.0",
"@tiptap/extension-underline": "^3.18.0",
"@tiptap/react": "^3.15.3",
"@tiptap/starter-kit": "^3.15.3",
"@tiptap/suggestion": "^3.15.3",
"@types/nprogress": "^0.2.3",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.45.1",
"file-type": "^21.3.0",
"formidable": "^3.5.4",
"lowlight": "^3.3.0",
"lucide-react": "^0.562.0",
"next": "16.1.1",
"next-auth": "^4.24.13",
"next-intl": "^4.8.3",
"next-themes": "^0.4.6",
"nodemailer": "^7.0.12",
"nprogress": "^0.2.0",
"nuqs": "^2.8.6",
"pino": "^10.3.0",
"pino-pretty": "^13.1.3",
"postgres": "^3.4.8",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-email": "^5.2.5",
"react-hook-form": "^7.71.1",
"sanitize-html": "^2.17.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tippy.js": "^6.3.7",
"tiptap-markdown": "^0.9.0",
"zod": "^4.3.5",
"zod-validation-error": "^5.0.0",
"zustand": "^5.0.10"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/formidable": "^3.4.6",
"@types/node": "^20",
"@types/nodemailer": "^7.0.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sanitize-html": "^2.16.1",
"@vitest/coverage-v8": "^4.0.18",
"dotenv": "^17.2.3",
"drizzle-kit": "^0.31.8",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"eslint-config-prettier": "^10.1.8",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"shadcn": "^3.8.5",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.0.18"
}
}