-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.03 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
{
"name": "rendervous",
"version": "1.0.0",
"description": "A social network showcase of digital art generated by AI.",
"main": "index.ejs",
"scripts": {
"start": "node server.js & npx tailwindcss -i ./public/css/style.css -o ./public/css/tailwind.css --watch",
"dev": "nodemon server.js & npx tailwindcss -i ./public/css/style.css -o ./public/css/tailwind.css --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Yire Morlans",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.1",
"cloudinary": "^1.31.0",
"connect-mongo": "^4.6.0",
"daisyui": "^2.31.0",
"dotenv": "^16.0.2",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-flash": "^0.0.2",
"express-session": "^1.17.3",
"method-override": "^3.0.0",
"mongodb": "^4.9.1",
"mongoose": "^6.6.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemon": "^2.0.19",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"tailwindcss": "^3.1.8",
"validator": "^13.7.0"
}
}