-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "jobber",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"repository": "https://github.com/Mig-uel/jobber.git",
"author": "Miguel <35431824+Mig-uel@users.noreply.github.com>",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^2.4.0",
"concurrently": "^8.2.2",
"cookie-parser": "^1.4.6",
"datauri": "^4.1.0",
"dayjs": "^1.11.13",
"express": "^4.19.2",
"express-async-errors": "^3.1.1",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.4.0",
"express-validator": "^7.2.0",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.3",
"multer": "^1.4.5-lts.1",
"nanoid": "^5.0.7"
},
"devDependencies": {
"dotenv": "^16.4.5",
"morgan": "^1.10.0",
"nodemon": "^3.1.4"
},
"scripts": {
"setup": "yarn && cd frontend && yarn",
"build": "yarn && cd frontend && yarn && yarn build",
"start": "node server.js",
"frontend": "cd frontend && yarn dev",
"server": "nodemon server.js",
"dev": "concurrently -n SERVER,FRONTEND -c red,green --kill-others-on-fail \"yarn server\" \"yarn frontend\""
}
}