-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.59 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
87
88
89
{
"name": "richable-web-server",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@auth/prisma-adapter": "^2.2.0",
"@blocknote/core": "^0.14.5",
"@blocknote/mantine": "^0.14.6",
"@blocknote/react": "^0.14.6",
"@hookform/resolvers": "^3.6.0",
"@prisma/client": "^5.16.2",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-hover-card": "^1.1.1",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.2.0",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.1.5",
"@tanstack/react-table": "^8.17.3",
"@types/uuid": "^9.0.8",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"export-to-csv": "^1.3.0",
"lucide-react": "^0.395.0",
"multer": "^1.4.5-lts.1",
"next": "14.2.4",
"next-auth": "^5.0.0-beta.19",
"next-connect": "^1.0.0",
"next-themes": "^0.3.0",
"nodemailer": "^6.9.13",
"plausible-tracker": "^0.3.9",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.52.0",
"react-icons": "^5.2.1",
"react-quill": "^2.0.0",
"react-quilljs": "^2.0.0",
"react-spinners": "^0.13.8",
"react-uuid": "^2.0.0",
"recharts": "^2.12.7",
"sonner": "^1.5.0",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"vaul": "^0.9.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/nodemailer": "^6.4.15",
"@types/quill": "^2.0.14",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.4",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-testing-library": "^6.2.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.4",
"prisma": "^5.16.2",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"overrides": {
"oauth4webapi": "npm:@jacobkim/oauth4webapi@^2.10.4"
}
}