Files
HRM/package.json
T
eewing c9453b19ed
CI / build (push) Failing after 48s
CI / deploy (push) Has been skipped
Add start script to package.json and enhance CI workflow for deployment
- Introduced a new "start" script in package.json to run the built application.
- Updated the CI workflow to include environment variables for deployment.
- Added steps for uploading build artifacts and deploying to a server using sshpass.
- Configured the deployment process to ensure the application runs on the specified port.
2026-02-17 09:46:40 -06:00

40 lines
1.0 KiB
JSON

{
"name": "hrm",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"start": "node build",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"devDependencies": {
"@internationalized/date": "^3.10.0",
"@lucide/svelte": "^0.561.0",
"@sveltejs/adapter-auto": "^7.0.0",
"@sveltejs/kit": "^2.50.2",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tailwindcss/vite": "^4.1.18",
"autoprefixer": "^10.4.24",
"bits-ui": "^2.14.4",
"postcss": "^8.5.6",
"svelte": "^5.49.2",
"svelte-check": "^4.3.6",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"dependencies": {
"clsx": "^2.1.1",
"pocketbase": "^0.26.8",
"svelte-sonner": "^1.0.7",
"tailwind-merge": "^3.4.1"
}
}