-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1013 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1013 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
37
38
{
"name": "helpdesk-mvp",
"type": "module",
"scripts": {
"dev": "node server.js",
"start": "node server.js",
"dev:css": "tailwindcss -i ./public/src/input.css -o ./public/css/style.css --watch",
"build:css": "tailwindcss -i ./public/src/input.css -o ./public/css/style.css --minify",
"build:dtc": "node scripts/build-dtc-db.mjs"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"better-sqlite3": "^9.4.0",
"cookie-parser": "^1.4.6",
"dompurify": "^3.2.6",
"dotenv": "^17.2.2",
"ejs": "^3.1.9",
"express": "^4.19.2",
"express-ejs-layouts": "^2.5.1",
"jsdom": "^27.0.0",
"jsonwebtoken": "^9.0.2",
"multer": "^2.0.2",
"mustache": "^4.2.0",
"node-cron": "^4.2.1",
"nodemailer": "^7.0.6",
"slugify": "^1.6.6",
"tinymce": "^6.8.6"
},
"engines": {
"node": "20.x"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.14"
}
}