-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
86 lines (86 loc) · 2.68 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
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
{
"name": "nextjs14-strong-next-auth",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:start": "next build && next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"postinstall": "prisma generate",
"test": "playwright test",
"test:allure": "playwright test",
"allure:generate": "allure generate allure-results -o allure-report --clean",
"allure:open": "allure open allure-report",
"allure:report": "npm run test:allure && npm run allure:generate && npm run allure:open"
},
"dependencies": {
"@auth/prisma-adapter": "2.7.4",
"@hookform/resolvers": "3.9.1",
"@prisma/client": "5.22.0",
"@radix-ui/react-avatar": "1.0.4",
"@radix-ui/react-dialog": "1.0.5",
"@radix-ui/react-dropdown-menu": "2.0.6",
"@radix-ui/react-icons": "1.3.0",
"@radix-ui/react-label": "2.0.2",
"@radix-ui/react-select": "2.0.0",
"@radix-ui/react-separator": "1.0.3",
"@radix-ui/react-slot": "1.0.2",
"@radix-ui/react-switch": "1.0.3",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"dotenv": "16.4.5",
"next": "14.2.18",
"next-auth": "5.0.0-beta.25",
"next-themes": "0.4.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.53.2",
"react-icons": "5.3.0",
"react-spinners": "0.13.8",
"resend": "4.0.1",
"server-only": "0.0.1",
"sonner": "1.7.0",
"tailwind-merge": "2.5.5",
"tailwindcss-animate": "1.0.7",
"uuid": "11.0.3",
"zod": "3.23.8"
},
"devDependencies": {
"@eslint/compat": "1.2.3",
"@eslint/eslintrc": "3.2.0",
"@eslint/js": "9.15.0",
"@next/eslint-plugin-next": "15.0.3",
"@playwright/test": "1.49.0",
"@types/bcrypt": "5.0.2",
"@types/bcryptjs": "2.4.6",
"@types/node": "22.9.3",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"allure-commandline": "2.32.0",
"allure-playwright": "3.0.6",
"autoprefixer": "10.4.20",
"eslint": "9.15.0",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"globals": "15.12.0",
"postcss": "8.4.49",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.9",
"prisma": "5.22.0",
"tailwindcss": "3.4.15",
"ts-node": "10.9.2",
"typescript": "5.7.2"
}
}