-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
{
"name": "next-chat",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev:next": "next dev",
"dev:server": "ts-node server.js",
"dev": "npm-run-all --parallel dev:next dev:server",
"build": "next build",
"start": "NODE_ENV=production next start",
"lint": "next lint"
},
"dependencies": {
"@prisma/client": "^5.14.0",
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"faker": "^6.6.6",
"fs": "^0.0.1-security",
"mysql2": "^3.10.0",
"net": "^1.0.2",
"next": "14.2.3",
"next-auth": "^4.24.7",
"nextjs-toploader": "^1.6.12",
"nodemon": "^3.1.1",
"postinstall": "^0.10.3",
"preline": "^2.3.0",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"tls": "^0.0.1",
"tspace-mysql": "^1.6.6",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/next-auth": "^3.15.0",
"@types/react": "^18.3.3",
"npm-run-all": "^4.1.5",
"postcss": "^8",
"prisma": "^5.14.0",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2"
}
}