generated from DuckyMomo20012/nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.65 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": "chat-gbit",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "tsc && next build",
"preview": "next start -p 4000",
"lint": "next lint",
"prepare": "husky install",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:migrate:prod": "prisma migrate deploy",
"prisma:reset": "prisma migrate reset",
"prisma:studio": "prisma studio"
},
"dependencies": {
"@faker-js/faker": "7.6.0",
"@hookform/resolvers": "3.3.2",
"@iconify/react": "4.1.1",
"@mantine/code-highlight": "7.3.2",
"@mantine/core": "7.3.2",
"@mantine/hooks": "7.3.2",
"@mantine/notifications": "7.3.2",
"@mdx-js/loader": "2.3.0",
"@mdx-js/mdx": "2.3.0",
"@mdx-js/react": "2.3.0",
"@next/mdx": "13.2.4",
"@prisma/client": "5.6.0",
"@reduxjs/toolkit": "1.9.7",
"@tanstack/react-query": "5.12.2",
"@tanstack/react-query-devtools": "5.12.2",
"axios": "1.6.2",
"boring-avatars": "1.10.1",
"clsx": "1.2.1",
"formidable": "2.1.1",
"hash-wasm": "4.11.0",
"next": "14.0.4",
"next-auth": "4.24.5",
"nextjs-progressbar": "0.0.16",
"openai": "4.20.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.43.2",
"react-redux": "8.0.5",
"redux-persist": "6.0.0",
"rehype-sanitize": "5.0.1",
"type-fest": "3.6.0",
"typed.js": "2.0.12",
"zod": "3.20.6",
"zod-validation-error": "1.0.1"
},
"devDependencies": {
"@babel/core": "7.23.5",
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@tailwindcss/container-queries": "0.1.1",
"@types/formidable": "2.0.5",
"@types/mdx": "2.0.10",
"@types/node": "20.10.2",
"@types/react": "18.2.41",
"@types/react-dom": "18.2.17",
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"autoprefixer": "10.4.16",
"eslint": "8.55.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.3",
"lint-staged": "15.1.0",
"postcss": "8.4.32",
"postcss-preset-mantine": "1.11.0",
"postcss-simple-vars": "7.0.1",
"prettier": "3.1.0",
"prettier-plugin-tailwindcss": "0.5.7",
"prisma": "5.6.0",
"tailwind-merge": "2.1.0",
"tailwindcss": "3.3.5",
"typescript": "5.3.2"
}
}