-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.7 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.7 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
{
"name": "natours",
"version": "1.0.0",
"description": "learning node, express and mongo",
"main": "app.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"start:prod": "NODE_ENV=production nodemon server.js",
"debug": "ndb server.js",
"test": "mocha --timeout 10000",
"build:js": "esbuild ./public/js/index.js --bundle --outfile=./public/js/bundle.js --minify",
"watch:js": "esbuild ./public/js/index.js --bundle --outfile=./public/js/bundle.js --watch"
},
"author": "gsharma010",
"license": "ISC",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"axios": "^1.10.0",
"bcrypt": "^6.0.0",
"cookie-parser": "^1.4.7",
"core-js": "^3.44.0",
"dotenv": "^17.1.0",
"express": "^5.1.0",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.5.1",
"helmet": "^8.1.0",
"hpp": "^0.2.3",
"install": "^0.13.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.16.2",
"morgan": "^1.10.0",
"multer": "^2.0.2",
"nodemailer": "^7.0.5",
"npm": "^11.4.2",
"pug": "^3.0.3",
"regenerator-runtime": "^0.14.1",
"sanitize-html": "^2.17.0",
"sharp": "^0.34.3",
"slugify": "^1.6.6",
"validator": "^13.15.15",
"esbuild": "^0.25.8"
},
"devDependencies": {
"chai": "^5.2.1",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.5",
"mocha": "^11.7.1",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"supertest": "^7.1.3"
}
}