-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.35 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
{
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev --turbopack",
"start": "next start",
"lint": "eslint .",
"format": "prettier --write .",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@heroicons/react": "^2.2.0",
"@neondatabase/serverless": "^1.1.0",
"@tailwindcss/forms": "^0.5.11",
"autoprefixer": "10.4.20",
"bcryptjs": "^3.0.3",
"clsx": "^2.1.1",
"dotenv": "^17.4.2",
"drizzle-orm": "1.0.0-rc.4",
"next": "^16.2.10",
"next-auth": "5.0.0-beta.31",
"pg": "^8.22.0",
"postcss": "8.5.1",
"react": "latest",
"react-dom": "latest",
"tailwindcss": "3.4.17",
"typescript": "5.7.3",
"use-debounce": "^10.1.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "26.1.1",
"@types/pg": "^8.20.0",
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^4.1.10",
"drizzle-kit": "1.0.0-rc.4",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.9",
"jsdom": "^29.1.1",
"prettier": "^3.9.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"tsx": "^4.23.0",
"vitest": "^4.1.10"
}
}