-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.62 KB
/
package.json
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
{
"name": "todoapp",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prisma:generate": "prisma generate",
"prisma:pull": "prisma db pull",
"test": "vitest"
},
"dependencies": {
"@lucia-auth/adapter-postgresql": "^3.0.0",
"@prisma/client": "^5.9.0",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-slot": "^1.1.0",
"bcrypt": "^5.1.1",
"bootstrap-icons": "^1.11.1",
"bowser": "^2.11.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"lucia": "^3.0.1",
"lucide-react": "^0.364.0",
"next": "^14.1.1",
"next-themes": "^0.3.0",
"oslo": "^1.0.3",
"pg": "^8.11.3",
"rate-limiter-flexible": "^4.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"redis": "^4.6.13",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/bcrypt": "^5.0.2",
"@types/node": "^20",
"@types/pg": "^8.11.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-next": "^14.1.0",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"jsdom": "^24.0.0",
"next-router-mock": "^0.9.12",
"postcss": "^8",
"prisma": "^5.9.0",
"tailwindcss": "^3",
"typescript": "^5",
"vitest": "^1.4.0"
}
}