Sidebar logic

This commit is contained in:
2026-05-02 12:26:59 +02:00
parent 3d1366e704
commit fa77190555
7 changed files with 1621 additions and 0 deletions

20
frontend/package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "frontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:scss": "sass src/styles/main.scss static/main.css --no-source-map --style=compressed",
"watch:scss": "sass --watch src/styles/main.scss:static/main.css",
"start": "npm-run-all --parallel watch:scss "trunk serve""
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"autoprefixer": "^10.5.0",
"postcss-cli": "^11.0.1",
"sass": "^1.99.0"
}
}