forked from glenndehaan/unifi-voucher-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "unifi-voucher-site",
"version": "0.0.0",
"description": "NPM packages for unifi-voucher-site",
"private": true,
"scripts": {
"start": "LOG_LEVEL=trace node server.js",
"dev": "nodemon --watch . --exec 'LOG_LEVEL=trace node server.js'",
"tailwind": "tailwindcss -i ./css/style.css -o ./public/dist/style.css --watch",
"build": "tailwindcss -i ./css/style.css -o ./public/dist/style.css --minify"
},
"engines": {
"node": ">=20.0.0"
},
"author": "Glenn de Haan",
"license": "MIT",
"overrides": {
"node-unifi@^2.5.1": {
"axios": "1.7.4"
},
"express-openid-connect@^2.17.1": {
"cookie": "0.7.0"
}
},
"dependencies": {
"cookie-parser": "^1.4.7",
"ejs": "^3.1.10",
"express": "^4.21.1",
"express-locale": "^2.0.2",
"express-openid-connect": "^2.17.1",
"js-logger": "^1.6.1",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"node-thermal-printer": "^4.4.3",
"node-unifi": "^2.5.1",
"nodemailer": "^6.9.16",
"pdfkit": "^0.15.1",
"qrcode": "^1.5.4"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.9",
"nodemon": "^3.1.7",
"tailwindcss": "^3.4.14"
}
}