forked from glenndehaan/unifi-voucher-site
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 911 Bytes
/
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
{
"name": "unifi-voucher-site",
"version": "0.0.0",
"description": "NPM packages for unifi-voucher-site",
"private": true,
"scripts": {
"start": "node server.js",
"dev": "nodemon --watch . --ignore db.json --exec '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": ">=16.0.0"
},
"author": "Glenn de Haan",
"license": "MIT",
"dependencies": {
"canvas": "^2.11.2",
"ejs": "^3.1.8",
"express": "^4.18.2",
"multer": "^1.4.5-lts.1",
"node-thermal-printer": "github:treeindark/node-thermal-printer",
"node-unifi": "^2.5.1",
"tailwindcss": "^3.2.4",
"tailwindcss-text-fill": "^0.2.0",
"uuid": "^9.0.0",
"words-array": "^1.0.1"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}