-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
28 lines (28 loc) · 846 Bytes
/
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
{
"devDependencies": {
"concurrently": "^8.2.2",
"cross-env": "^7.0.3"
},
"scripts": {
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"start:backend": "cd Backend && npm start",
"start:frontend": "cd Frontend && npm run dev",
"build": "npm run build:frontend && npm run build:backend && npm install",
"build:frontend": "cd Frontend && npm install && npm run build",
"build:backend": "cd Backend && npm install"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"express": "^4.19.1",
"express-validator": "^7.0.1",
"http-errors": "^2.0.0",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"mongoose": "^8.2.3",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.1.0"
}
}