2024-03-12 10:40:53 +00:00
|
|
|
{
|
|
|
|
"name": "actaeon",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
|
|
|
"license": "0BSD",
|
|
|
|
"scripts": {
|
|
|
|
"dev": "next dev",
|
|
|
|
"build": "next build",
|
|
|
|
"start": "next start",
|
|
|
|
"lint": "next lint",
|
|
|
|
"migrate:up": "dotenvx run -f .env.local -- db-migrate up",
|
|
|
|
"migrate": "npm run migrate:up",
|
|
|
|
"migrate:down": "dotenvx run -f .env.local -- db-migrate down",
|
|
|
|
"migrate:create": "dotenvx run -f .env.local -- db-migrate create",
|
|
|
|
"db:export": "dotenvx run -f .env.local -- kysely-codegen --exclude-pattern cozynet* --exclude-pattern alembic_version --exclude-pattern actaeon_migrations --out-file src/types/db.d.ts && node process-db.js"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@heroicons/react": "^2.1.1",
|
|
|
|
"@nextui-org/react": "^2.2.10",
|
|
|
|
"bcrypt": "^5.1.1",
|
|
|
|
"clsx": "^2.1.0",
|
|
|
|
"db-migrate": "^0.11.14",
|
|
|
|
"db-migrate-mysql": "^2.3.2",
|
|
|
|
"deep-is": "^0.1.4",
|
|
|
|
"framer-motion": "^11.0.8",
|
|
|
|
"jsonwebtoken": "^9.0.2",
|
|
|
|
"kysely": "^0.27.2",
|
|
|
|
"mysql2": "^3.9.2",
|
|
|
|
"next": "14.1.3",
|
|
|
|
"next-auth": "^5.0.0-beta.15",
|
|
|
|
"next-client-cookies": "^1.1.0",
|
|
|
|
"next-themes": "^0.2.1",
|
|
|
|
"react": "^18",
|
|
|
|
"react-dom": "^18",
|
2024-03-14 05:56:09 +00:00
|
|
|
"react-virtualized": "^9.22.5",
|
2024-03-12 10:40:53 +00:00
|
|
|
"sass": "^1.71.1",
|
|
|
|
"tailwind-merge": "^2.2.1",
|
|
|
|
"tailwindcss-text-fill-stroke": "^2.0.0-beta.1",
|
|
|
|
"usehooks-ts": "^3.0.1"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@dotenvx/dotenvx": "^0.24.0",
|
|
|
|
"@types/bcrypt": "^5.0.2",
|
|
|
|
"@types/jsonwebtoken": "^9.0.6",
|
|
|
|
"@types/node": "^20",
|
|
|
|
"@types/react": "^18",
|
|
|
|
"@types/react-dom": "^18",
|
2024-03-14 05:56:09 +00:00
|
|
|
"@types/react-virtualized": "^9.21.29",
|
2024-03-12 10:40:53 +00:00
|
|
|
"autoprefixer": "^10.0.1",
|
|
|
|
"eslint": "^8",
|
|
|
|
"eslint-config-next": "14.1.3",
|
|
|
|
"kysely-codegen": "^0.13.1",
|
|
|
|
"postcss": "^8",
|
|
|
|
"tailwindcss": "^3.3.0",
|
|
|
|
"typescript": "^5"
|
|
|
|
}
|
|
|
|
}
|