-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "chat-room",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node src/app.js",
"dev": "concurrently \"vite\" \"nodemon src/app.js\"",
"preview": "vite preview --outDir dist",
"build": "vite build && cp -r dist/* public/",
"test": "echo \"Error: no test specified\" && exit 1",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev"
},
"keywords": [
"chatroom",
"websocket"
],
"author": "Steward Tsou",
"license": "ISC",
"description": "a chatroom",
"devDependencies": {
"@vitejs/plugin-react": "^4.3.1",
"concurrently": "^8.2.2",
"nodemon": "^3.1.4",
"prisma": "^5.17.0"
},
"dependencies": {
"@prisma/client": "^5.17.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"pg": "^8.12.0",
"pg-hstore": "^2.3.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"redis": "^4.6.15",
"sequelize": "^6.37.3",
"vite": "^5.3.4",
"ws": "^8.18.0"
}
}