-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 727 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 727 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
{
"name": "eduworld-full-stack",
"private": true,
"scripts": {
"setup": "concurrently \"npm i\" \"cd frontend && npm install\" \"cd backend && npm install\"",
"build": "cd frontend && npm install && npm run build",
"start": "cd backend && npm install && node server.js",
"dev:backend": "cd backend && npx nodemon server.js",
"dev:frontend": "cd frontend && npm run dev"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"dependencies": {
"bcryptjs": "^3.0.2",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"dotenv": "^16.6.0",
"express": "^5.1.0",
"express-rate-limit": "^8.3.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.16.1"
}
}