Files
tibi-svelte-starter/package.json
Sebastian Frank 40ffa8207e feat: add new contact form, hero, features, and richtext blocks; implement scroll-reveal action and update styles
- Introduced ContactFormBlock, FeaturesBlock, HeroBlock, and RichtextBlock components.
- Implemented a scroll-reveal action for animations on element visibility.
- Enhanced CSS styles for better theming and prose formatting.
- Added localization support for new components and updated existing translations.
- Created e2e tests for demo pages including contact form validation and navigation.
- Added a video tour showcasing the demo pages and interactions.
2026-02-26 03:54:07 +00:00

62 lines
2.8 KiB
JSON

{
"name": "tibi-svelte-starter",
"version": "1.0.0",
"main": "README.md",
"repository": "https://gitbase.de/cms/tibi_svelte_starter.git",
"author": "Sebastian Frank <sebastian@webmakers.de>",
"license": "MIT",
"scripts": {
"validate": "svelte-check && tsc --noEmit",
"dev": "node scripts/esbuild-wrapper.js watch",
"start": "node scripts/esbuild-wrapper.js start",
"start:mock": "MOCK=1 node scripts/esbuild-wrapper.js start",
"start:ssr": "SSR=1 node scripts/esbuild-wrapper.js start",
"build": "node scripts/esbuild-wrapper.js build",
"build:admin": "node scripts/esbuild-wrapper.js build esbuild.config.admin.js",
"build:server": "node scripts/esbuild-wrapper.js build esbuild.config.server.js && babel --config-file ./babel.config.server.json _temp/app.server.js -o _temp/app.server.babeled.js && esbuild _temp/app.server.babeled.js --outfile=api/hooks/lib/app.server.js --bundle --sourcemap --platform=node --banner:js='// @ts-nocheck'",
"test": "playwright test",
"test:e2e": "playwright test tests/e2e",
"test:api": "playwright test tests/api",
"test:visual": "playwright test --project=visual-desktop --project=visual-iphonese --project=visual-ipad",
"test:visual:update": "playwright test --project=visual-desktop --project=visual-iphonese --project=visual-ipad --update-snapshots",
"test:report": "playwright show-report",
"tour": "playwright test --config=video-tours/playwright.config.ts --project=tour-desktop",
"tour:mobile": "playwright test --config=video-tours/playwright.config.ts --project=tour-mobile"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.2.1",
"@tsconfig/svelte": "^5.0.8",
"browser-sync": "^3.0.4",
"chokidar": "^5.0.0",
"connect-history-api-fallback": "^2.0.0",
"esbuild": "^0.27.3",
"esbuild-postcss": "^0.0.4",
"esbuild-svelte": "^0.9.4",
"http-proxy-middleware": "^3.0.5",
"less": "^4.5.1",
"morgan": "^1.10.1",
"node-fetch": "^3.3.2",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.0",
"svelte": "^5.53.5",
"svelte-check": "^4.4.3",
"svelte-preprocess": "^6.0.3",
"svelte-preprocess-esbuild": "^3.0.1",
"tailwindcss": "^4.2.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@sentry/cli": "^3.2.2",
"@sentry/svelte": "^10.40.0",
"cryptcha": "ssh://git@gitbase.de:2222/cms/cryptcha.git",
"svelte-i18n": "^4.0.1"
},
"packageManager": "yarn@4.7.0"
}