-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·52 lines (52 loc) · 1.26 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "mern-invoice",
"version": "1.0.0",
"description": "An invoicing web app built with the MERN Stack",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node backend/server.js",
"dev": "nodemon backend/server.js"
},
"repository": {
"type": "git",
"url": "(https://github.com/hn-agnihotri29/mern-invoice.git)"
},
"keywords": [
"Invoice",
"MERN",
"Stack",
"ReduxToolkit"
],
"author": "H.N. Agnihotri",
"license": "MIT",
"dependencies": {
"@mui/lab": "^5.0.0-alpha.170",
"bcryptjs": "^2.4.3",
"chalk": "^5.3.0",
"cloudinary": "^2.2.0",
"cookie-parser": "^1.4.6",
"date-fns": "^3.6.0",
"dotenv": "^16.4.4",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^7.1.5",
"handlebars": "^4.7.8",
"html-pdf": "^3.0.1",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.1.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.9",
"passport": "^0.7.0",
"passport-google-oauth": "^2.0.0",
"validator": "^13.11.0",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"nodemon": "^3.0.3"
}
}