Files
JS/webseite-ts/frontend/package.json
2026-08-03 09:04:28 +02:00

33 lines
1.0 KiB
JSON

{
"name": "webseite-frontend-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "run-p server css ts",
"js": "npx esbuild dev/scripts/main.js --watch --bundle --sourcemap --outfile=assets/js/build.js",
"ts": "npx esbuild dev/scripts/main.ts --watch --bundle --sourcemap --outfile=assets/js/build.js --loader:.ts=ts",
"http-server": "npx http-server -p 3000 -c-1",
"server": "npx browser-sync start --server --files 'assets/css/*.css, assets/js/*.js, **/*.html, *.html'",
"css": "sass dev/scss/main.scss:assets/css/main.css -w -q",
"dev": "run-p server css ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@types/bootstrap": "^5.2.11",
"@types/toastify-js": "^1.12.4",
"browser-sync": "^3.0.4",
"esbuild": "^0.28.1",
"npm-run-all": "^4.1.5",
"sass": "^1.102.0"
},
"dependencies": {
"@splidejs/splide": "^4.1.4",
"bootstrap": "^5.3.8",
"toastify-js": "^1.12.0"
}
}