-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.88 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.88 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
{
"name": "im-connect",
"private": true,
"version": "1.0.0",
"description": "A robust, real-time instant messaging platform connecting Enterprises and Experts. Built with React 19, Node.js, WebSocket, and Prisma.",
"keywords": [
"react",
"nodejs",
"websocket",
"prisma",
"chat",
"instant-messaging",
"tailwindcss"
],
"author": "7-ch",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"postinstall": "prisma generate",
"db:deploy": "prisma migrate deploy",
"db:migrate": "prisma migrate dev",
"db:seed": "node scripts/seed-db.js",
"db:studio": "prisma studio",
"db:reset": "prisma migrate reset",
"db:clear-chat": "node scripts/clear-messages.js"
},
"dependencies": {
"@prisma/client": "^5.10.2",
"ali-oss": "^6.23.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"framer-motion": "^12.23.26",
"lucide-react": "^0.561.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router-dom": "^6.30.2",
"ws": "^8.18.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^22.14.0",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"@vitejs/plugin-react": "^5.0.0",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"prisma": "^5.10.2",
"tailwindcss": "^4.1.18",
"typescript": "~5.8.2",
"vite": "^6.2.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"esbuild",
"prisma",
"unrs-resolver"
]
},
"prisma": {
"seed": "node scripts/seed-db.js"
}
}