-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 953 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 953 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
28
29
30
31
32
33
34
35
36
37
{
"name": "client-portal",
"version": "1.0.0",
"description": "Cross-region client portal with real-time updates",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"client": "cd client && npm start",
"server": "nodemon server.js",
"build": "cd client && npm run build",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-rate-limit": "^6.10.0",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.5.0",
"multer": "^1.4.5-lts.1",
"socket.io": "^4.7.2"
},
"devDependencies": {
"nodemon": "^3.0.1"
},
"keywords": [
"portal",
"client",
"real-time",
"cross-region"
],
"author": "Your Company",
"license": "MIT"
}