-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.31 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
{
"name": "chatemo",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "node --loader ts-node/esm ./server.ts",
"build": "next build",
"start": "NODE_ENV=production node --loader ts-node/esm ./server.ts"
},
"dependencies": {
"@emoji-mart/data": "^1.2.1",
"@emoji-mart/react": "^1.1.1",
"@prisma/client": "^5.19.0",
"axios": "^1.7.5",
"bcrypt": "^5.1.1",
"date-fns": "^3.6.0",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.436.0",
"next": "14.2.6",
"nodemailer": "^6.9.14",
"notistack": "^3.0.1",
"prisma": "^5.19.0",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.3.0",
"react-toastify": "^10.0.5",
"react-transition-group": "^4.4.5",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20",
"@types/nodemailer": "^6.4.15",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-transition-group": "^4.4.11",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "14.2.6",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}