-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.53 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
{
"name": "noted",
"version": "1.4.1",
"description": "Noted - Personal gift planning app",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"db:generate": "drizzle-kit generate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --max-warnings=0"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.7.4",
"@sentry/nextjs": "^10.52.0",
"bcryptjs": "^2.4.3",
"clsx": "^2.1.1",
"drizzle-orm": "0.45.2",
"next": "^15.5.18",
"next-auth": "^5.0.0-beta.31",
"postgres": "^3.4.5",
"react": "19.0.0",
"react-dom": "19.0.0",
"resend": "^4.0.1",
"tailwind-merge": "^2.5.5",
"zod": "^3.24.1"
},
"overrides": {
"postcss": "^8.5.10",
"esbuild": "^0.25.12"
},
"devDependencies": {
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitest/coverage-v8": "^4.1.5",
"autoprefixer": "^10.4.20",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "^15.5.18",
"husky": "^9.1.7",
"lint-staged": "^17.0.2",
"postcss": "^8.5.10",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vitest": "^4.1.5"
}
}