-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 968 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 968 Bytes
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
{
"name": "mern-live-backend",
"version": "1.0.0",
"main": "app.js",
"scripts": {
"test": "echo \"No tests specified\" && exit 0",
"tailwind": "npx tailwindcss -i ./public/styles/input.css -o ./public/styles/output.css --watch",
"start": "concurrently \"npm run tailwind\" \"nodemon app.js\""
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"concurrently": "^9.0.1",
"nodemon": "^3.1.7",
"tailwindcss": "^3.4.14"
},
"dependencies": {
"@sendgrid/mail": "^8.1.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"compression": "^1.7.5",
"connect-mongodb-session": "^5.0.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.1",
"express-session": "^1.18.1",
"express-validator": "^7.2.0",
"helmet": "^8.0.0",
"mongodb": "^6.10.0",
"mongoose": "^8.8.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.11.4"
}
}