-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.17 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.17 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "tours",
"version": "1.0.0",
"description": "node, express, mongodb",
"main": "app.js",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"accepts": "^1.3.8",
"array-flatten": "^1.1.1",
"axios": "^1.13.3",
"bcrypt": "^6.0.0",
"body-parser": "^1.20.4",
"bytes": "^3.1.2",
"call-bind-apply-helpers": "^1.0.2",
"call-bound": "^1.0.4",
"compression": "^1.8.1",
"content-disposition": "^0.5.4",
"content-type": "^1.0.5",
"cookie": "^0.7.2",
"cookie-parser": "^1.4.7",
"cookie-signature": "^1.0.7",
"cors": "^2.8.6",
"debug": "^2.6.9",
"depd": "^2.0.0",
"destroy": "^1.2.0",
"dotenv": "^17.2.3",
"dunder-proto": "^1.0.1",
"ee-first": "^1.1.1",
"encodeurl": "^2.0.0",
"es-define-property": "^1.0.1",
"es-errors": "^1.3.0",
"es-object-atoms": "^1.1.1",
"escape-html": "^1.0.3",
"etag": "^1.8.1",
"express": "^4.22.1",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^8.2.1",
"finalhandler": "^1.3.2",
"forwarded": "^0.2.0",
"fresh": "^0.5.2",
"function-bind": "^1.1.2",
"get-intrinsic": "^1.3.0",
"get-proto": "^1.0.1",
"gopd": "^1.2.0",
"has-symbols": "^1.1.0",
"hasown": "^2.0.2",
"helmet": "^8.1.0",
"hpp": "^0.2.3",
"html-to-text": "^9.0.5",
"http-errors": "^2.0.1",
"iconv-lite": "^0.4.24",
"inherits": "^2.0.4",
"ipaddr.js": "^1.9.1",
"jsonwebtoken": "^9.0.3",
"math-intrinsics": "^1.1.0",
"media-typer": "^0.3.0",
"merge-descriptors": "^1.0.3",
"methods": "^1.1.2",
"mime": "^1.6.0",
"mime-db": "^1.52.0",
"mime-types": "^2.1.35",
"mongodb": "^7.0.0",
"mongoose": "^8.12.1",
"morgan": "^1.10.1",
"ms": "^2.0.0",
"multer": "^2.0.2",
"negotiator": "^0.6.3",
"nodemailer": "^7.0.12",
"object-inspect": "^1.13.4",
"on-finished": "^2.4.1",
"parseurl": "^1.3.3",
"path-to-regexp": "^0.1.12",
"proxy-addr": "^2.0.7",
"pug": "^3.0.3",
"qs": "^6.14.1",
"range-parser": "^1.2.1",
"raw-body": "^2.5.3",
"safe-buffer": "^5.2.1",
"safer-buffer": "^2.1.2",
"send": "^0.19.2",
"serve-static": "^1.16.3",
"setprototypeof": "^1.2.0",
"sharp": "^0.34.5",
"side-channel": "^1.1.0",
"side-channel-list": "^1.0.0",
"side-channel-map": "^1.0.1",
"side-channel-weakmap": "^1.0.2",
"slugify": "^1.6.6",
"statuses": "^2.0.2",
"stripe": "^20.3.1",
"toidentifier": "^1.0.1",
"type-is": "^1.6.18",
"unpipe": "^1.0.0",
"utils-merge": "^1.0.1",
"validator": "^13.15.26",
"vary": "^1.1.2",
"xss-clean": "^0.1.4"
},
"scripts": {
"start": "cross-env NODE_ENV=development nodemon server.js",
"start:prod": "cross-env NODE_ENV=production nodemon server.js",
"debug": "ndb server.js",
"watch:js": "parcel watch ./public/js/index.js --out-dir ./public/js --out-file bundle.js",
"build:js": "parcel build ./public/js/index.js --out-dir ./public/js --out-file bundle.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Arnab Datta",
"license": "ISC",
"devDependencies": {
"cross-env": "^10.1.0",
"parcel-bundler": "^1.12.5"
}
}