-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.61 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.61 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
{
"name": "event-management-portal",
"version": "1.0.0",
"description": "",
"main": "app.js",
"type": "module",
"scripts": {
"test": "jest",
"start": "cross-env DEBUG=development:* nodemon app.js",
"server": "nodemon app.js",
"dev:css": "tailwindcss -i ./public/css/input.css -o ./public/css/style.css --watch",
"build:css": "tailwindcss -i ./public/css/input.css -o ./public/css/style.css --minify",
"dev": "concurrently \"npm run server\" \"npm run dev:css\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
"bcrypt": "^6.0.0",
"cloudinary": "^1.41.3",
"concurrently": "^9.1.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"debug": "^4.4.0",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"ejs-mate": "^4.0.0",
"express": "^4.21.2",
"express-session": "^1.18.1",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"marked": "^15.0.12",
"mongoose": "^8.12.1",
"multer": "^2.0.1",
"multer-storage-cloudinary": "^4.0.0",
"node-cron": "^4.1.0",
"nodemailer": "^7.0.3",
"nodemon": "^3.1.9",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"autoprefixer": "^10.4.21",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"postcss": "^8.5.4",
"supertest": "^7.1.0",
"tailwindcss": "^3.4.1"
}
}