-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.02 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.02 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "natours",
"version": "1.0.0",
"description": "A project of tour booking platform to book adventurous tours at best prices from Node.js, Express, MongoDB & More: The Complete Bootcamp by Jonas Schmedtmann",
"main": "./public/js/index.js",
"targets": {
"frontEnd": {
"context": "browser",
"outputFormat": "esmodule",
"source": "./public/js/index.js",
"distDir": "./public/dist/"
}
},
"scripts": {
"start": "NODE_ENV=production node server.js",
"dev": "npx nodemon server.js",
"prod": "NODE_ENV=production node server.js",
"debug": "ndb server.js",
"watch:js": "parcel watch --no-hmr --target frontEnd",
"build:js": "parcel build --target frontEnd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Showwaiyan/Natours.git"
},
"author": "Show Wai Yan",
"license": "ISC",
"bugs": {
"url": "https://github.com/Showwaiyan/Natours/issues"
},
"homepage": "https://github.com/Showwaiyan/Natours#readme",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@mapbox/mapbox-gl-rtl-text": "^0.3.0",
"@maplibre/maplibre-gl-leaflet": "^0.1.3",
"axios": "^1.11.0",
"bcryptjs": "^3.0.2",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.5.1",
"helmet": "^8.1.0",
"hpp": "^0.2.3",
"html-to-text": "^9.0.5",
"jsonwebtoken": "^9.0.2",
"leaflet": "^1.9.4",
"maplibre-gl": "^5.6.2",
"mongoose": "^8.13.0",
"morgan": "^1.10.0",
"multer": "^2.0.2",
"nodemailer": "^7.0.5",
"pug": "^3.0.3",
"sharp": "^0.34.3",
"slugify": "^1.6.6",
"stripe": "^18.4.0",
"validator": "^13.15.0",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"buffer": "^6.0.3",
"eslint": "^9.28.0",
"globals": "^16.2.0",
"ndb": "^1.1.5",
"nodemon": "^3.1.9",
"parcel": "^2.15.4"
},
"engines": {
"node": ">=10.0.0"
}
}