This repository was archived by the owner on Jan 20, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.33 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.33 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
28
29
30
31
32
33
34
35
36
37
38
39
{
"scripts": {
"dev": "esbuild frontends/scripts/app.js --bundle --outfile=static/scripts/app.js --watch --platform=browser",
"build": "tailwindcss -i ./frontends/styles/app.css -o ./static/styles/app.css && esbuild frontends/scripts/app.js --bundle --outfile=static/scripts/app.js",
"css": "tailwindcss -i ./frontends/styles/app.css -o ./static/styles/app.css --watch",
"commit": "cz"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"autoprefixer": "^10.4.20",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"daisyui": "^4.12.22",
"esbuild": "^0.24.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16"
},
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
"@fullcalendar/timegrid": "^6.1.15",
"@sgratzl/chartjs-chart-boxplot": "^4.4.4",
"alpinejs": "^3.14.7",
"chart.js": "^4.4.7",
"chartjs-plugin-datalabels": "^2.2.0",
"htmx.org": "^1.9.12",
"litepicker": "^2.0.12",
"sortablejs": "^1.15.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}