-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.68 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
{
"name": "MERN-CONNECTIFY",
"version": "1.0.0",
"description": "A real time chat application build in MERN stack",
"main": "index.js",
"scripts": {
"watch:client": "node esbuild-config/client.dev.mjs",
"watch:server": "node esbuild-config/server.dev.mjs",
"watch:server-restart": "nodemon --config nodemon.json",
"build:client": "node esbuild-config/client.prod.mjs",
"build:server": "node esbuild-config/server.prod.mjs",
"build:db": "prisma db push",
"format": "prettier --write .",
"dev": "npm-run-all --parallel watch:*",
"build": "npm-run-all --sequential build:*",
"start": "node dist/server.js"
},
"keywords": [
"MERN-CONNECTIFY"
],
"author": "LAVIN RAJ MOHAN",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.10.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"npm-run-all": "^4.1.5",
"prisma": "^5.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.0.1",
"react-router-dom": "^6.22.1",
"socket.io": "^4.7.4",
"socket.io-client": "^4.7.4",
"zustand": "^4.5.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.19",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"autoprefixer": "^10.4.17",
"esbuild": "^0.20.1",
"esbuild-postcss": "^0.0.4",
"nodemon": "^3.0.3",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"tailwind-merge": "^2.2.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
}
}