Files
Scriberr/web/landing/package.json
rishikanthc 3e5cb9bdb3 fixes CI/CD
2025-08-29 11:46:26 -07:00

28 lines
764 B
JSON

{
"name": "scriberr-landing",
"private": true,
"version": "0.0.2",
"type": "module",
"scripts": {
"sync:spec": "cp -f ../../api-docs/swagger.json public/api/swagger.json",
"sync:undoc": "node ./scripts/gen-endpoints.mjs",
"dev": "npm run sync:spec && npm run sync:undoc && vite",
"build": "npm run sync:spec && npm run sync:undoc && tsc -b && vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.35",
"@vitejs/plugin-react": "^4.3.1",
"tailwindcss": "^3.4.9",
"typescript": "^5.4.0",
"vite": "^5.3.0"
}
}