-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.09 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.09 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
{
"name": "scribe-css-build",
"version": "1.0.0",
"description": "Build tools for Scribe ESP32-C3 Thermal Printer CSS",
"private": true,
"scripts": {
"build": "npx @tailwindcss/cli --input ./src/css-source/input.css --output ./data/css/app.css --minify && node scripts/esbuild.config.js prod && python3 scripts/bin/optimize_filesystem.py",
"dev": "npx @tailwindcss/cli --input ./src/css-source/input.css --output ./data/css/app.css && node scripts/esbuild.config.js dev && python3 scripts/bin/optimize_filesystem.py",
"test": "pio test -e c3-4mb-test",
"firmware": "python3 scripts/bin/build_firmware_release.py",
"firmware:recover": "python3 scripts/bin/build_firmware_release.py --recover",
"firmware:c3": "pio run -e c3-4mb-prod",
"firmware:s3": "pio run -e s3-4mb-prod",
"firmware:s3-pcb": "pio run -e s3-pcb-prod"
},
"dependencies": {
"@alpinejs/collapse": "^3.14.9",
"@tailwindcss/cli": "^4.1.12",
"alpinejs": "^3.14.9",
"cors": "^2.8.5",
"express": "^5.1.0",
"tailwindcss": "^4.1.12"
},
"devDependencies": {
"esbuild": "^0.25.9"
}
}