-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.19 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
{
"name": "studenthub",
"version": "1.0.0",
"description": "A Community-Driven Social Media Platform for Students",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "cd client && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"install-client": "cd client && npm install",
"build-client": "cd client && npm run build",
"build": "npm install && npm run install-client && npm run build-client",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm run install-client && npm run build-client"
},
"author": "",
"license": "ISC",
"dependencies": {
"bad-words": "^3.0.3",
"bcryptjs": "^2.4.3",
"bson": "^6.8.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"express-validator": "^6.14.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^8.6.1",
"nodemon": "^2.0.16",
"socket.io": "^4.5.1",
"validator": "^13.7.0"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"concurrently": "^7.0.0",
"eslint": "^9.11.1",
"eslint-plugin-react": "^7.37.1",
"globals": "^15.10.0"
},
"engines": {
"node": ">=14.0.0"
}
}