-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.26 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.26 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
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
{
"name": "chat-system",
"type": "module",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@10.6.2",
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "simple-git-hooks",
"db": "prisma generate"
},
"dependencies": {
"@ant-design/icons": "^5.3.7",
"@ant-design/nextjs-registry": "^1.0.0",
"@ant-design/pro-chat": "^1.14.0",
"@ant-design/pro-components": "^2.7.10",
"@prisma/client": "^6.5.0",
"ahooks": "^3.8.0",
"ai": "^3.1.36",
"ali-oss": "^6.20.0",
"antd": "^5.18.1",
"antd-style": "^3.6.2",
"bcryptjs": "^2.4.3",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.11",
"immer": "^10.1.1",
"mitt": "^3.0.1",
"next": "^14.2.4",
"next-auth": "^4.24.7",
"next-swagger-doc": "^0.4.0",
"openai": "^4.51.0",
"prisma": "^6.5.0",
"rabbitmq-client": "^5.0.2",
"radash": "^12.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"redis": "^4.6.14",
"socket.io-client": "^4.7.5",
"swagger-ui-react": "^5.17.14",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"zustand": "^4.5.2"
},
"devDependencies": {
"@antfu/eslint-config": "^4.10.0",
"@eslint-react/eslint-plugin": "^1.5.15",
"@eslint/eslintrc": "^3.1.0",
"@types/ali-oss": "^6.16.11",
"@types/bcryptjs": "^2.4.6",
"@types/crypto-js": "^4.2.2",
"@types/node": "^22.13.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/swagger-ui-react": "^5.18.0",
"autoprefixer": "^10.4.19",
"eslint": "^9.22.0",
"eslint-config-next": "^15.2.2",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-markdownlint": "^0.6.0",
"eslint-plugin-perfectionist": "^4.10.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-tailwindcss": "^3.18.0",
"lint-staged": "^15.2.7",
"postcss": "^8.4.38",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "pnpm lint:fix"
}
}