-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 870 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 870 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
{
"name": "mydrop",
"version": "1.2.2",
"private": true,
"type": "commonjs",
"main": "app.js",
"scripts": {
"start": "node app.js",
"build:css": "tailwindcss -i frontend/styles/tailwind.css -o frontend/templates/static/tailwind.css --minify",
"build:vendor": "node scripts/copy-vendor.js",
"build": "yarn build:css && yarn build:vendor",
"reset:admin": "node scripts/reset-admin.js"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"marked": "^12.0.2",
"dompurify": "^3.1.7",
"sweetalert2": "^11.10.8",
"jsqr": "^1.4.0",
"multer": "^2.0.0",
"better-sqlite3": "^9.4.0",
"qrcode": "^1.5.3",
"uuid": "^9.0.1",
"ws": "^8.18.0"
},
"devDependencies": {
"tailwindcss": "^3.4.10",
"postcss": "^8.4.47",
"autoprefixer": "^10.4.20"
}
}