-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.33 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
{
"name": "chatter",
"version": "1.0.0",
"description": "A robust real-time chat application with enhanced features including user authentication through both Google Social Login and traditional Email/Password signup. This application is built using a powerful stack that includes Node.js, Socket.io, Express, React, Material-UI (MUI), Zustand, PostgreSQL, Prisma, and Auth0 for secure and seamless user authentication.",
"main": "index.js",
"scripts": {
"start": "npm-run-all --parallel api:dev client:dev",
"api:dev": "cd api && npm run dev",
"client:dev": "cd client && npm start",
"db:reset": "cd api && npx prisma db push --force-reset",
"db:update": "cd api && npx prisma db push",
"install": "npm-run-all --parallel api:install client:install",
"client:install": "cd client && npm install",
"api:install": "cd api && npm install",
"studio": "cd api && npx prisma studio",
"docker": "bash ./scripts/dev_run.sh",
"docker:down": "bash ./scripts/dev_remove.sh",
"docker:rebuild": "bash ./scripts/dev_rebuild.sh"
},
"keywords": [
"chat",
"messaging",
"group chats",
"private chats"
],
"author": "Yeasir Hugais",
"license": "MIT",
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}