-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 743 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 743 Bytes
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
{
"name": "polling-system",
"version": "1.0.0",
"description": "A real-time polling system with React frontend and Express backend",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd server && npm run dev",
"client": "cd client && npm start",
"build": "cd client && npm run build",
"install-server": "cd server && npm install",
"install-client": "cd client && npm install",
"install-all": "npm run install-server && npm run install-client"
},
"keywords": [
"polling",
"real-time",
"react",
"express",
"socket.io"
],
"author": "Harsh Tiwari",
"license": "MIT",
"devDependencies": {
"concurrently": "^8.2.2"
}
}