-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"name": "hotel-booking-mean-stack",
"version": "1.0.0",
"description": "Using MEAN stack to implement a simple hotel booking application where user can search hotels in database and book them.",
"scripts": {
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"start:backend": "cd packages/backend && node src/app.js",
"start:frontend": "cd packages/frontend && live-server"
},
"keywords": [
"Node 22",
"Mongodb 8",
"Angular 18",
"Express"
],
"author": "Satish Jhanwer",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/satishjhanwer/hotel-booking-mean-stack.git"
},
"bugs": {
"url": "https://github.com/satishjhanwer/hotel-booking-mean-stack/issues"
},
"homepage": "https://github.com/satishjhanwer/hotel-booking-mean-stack",
"devDependencies": {
"concurrently": "^9.0.1"
},
"resolutions": {
"http-proxy-middleware": "^3.0.3"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}