actaeon/package.json

61 lines
1.9 KiB
JSON
Raw Normal View History

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",
2024-03-30 10:29:55 +00:00
"migrate:up": "dotenvx run -f .env.local -- node db-migrate.cjs up",
2024-03-12 10:40:53 +00:00
"migrate": "npm run migrate:up",
2024-03-30 10:29:55 +00:00
"migrate:down": "dotenvx run -f .env.local -- node db-migrate.cjs down",
2024-03-12 10:40:53 +00:00
"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": {
2024-03-25 06:46:45 +00:00
"@heroicons/react": "^2.1.3",
2024-03-12 10:40:53 +00:00
"@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": "^10.18.0",
2024-03-12 10:40:53 +00:00
"jsonwebtoken": "^9.0.2",
2024-03-25 06:46:45 +00:00
"kysely": "^0.27.3",
2024-03-12 10:40:53 +00:00
"mysql2": "^3.9.2",
2024-03-25 06:46:45 +00:00
"next": "14.1.4",
2024-03-12 10:40:53 +00:00
"next-auth": "^5.0.0-beta.15",
2024-03-28 00:34:41 +00:00
"next-client-cookies": "^1.1.0",
2024-03-25 06:46:45 +00:00
"next-themes": "^0.3.0",
2024-03-12 10:40:53 +00:00
"react": "^18",
2024-03-19 04:54:42 +00:00
"react-day-picker": "^8.10.0",
2024-03-12 10:40:53 +00:00
"react-dom": "^18",
2024-03-20 22:01:52 +00:00
"react-icons": "^5.0.1",
2024-03-14 05:56:09 +00:00
"react-virtualized": "^9.22.5",
2024-03-25 06:46:45 +00:00
"sass": "^1.72.0",
"tailwind-merge": "^2.2.2",
2024-03-12 10:40:53 +00:00
"tailwindcss-text-fill-stroke": "^2.0.0-beta.1",
2024-03-25 06:46:45 +00:00
"usehooks-ts": "^3.0.2"
2024-03-12 10:40:53 +00:00
},
"devDependencies": {
2024-03-25 06:46:45 +00:00
"@dotenvx/dotenvx": "^0.26.0",
2024-03-12 10:40:53 +00:00
"@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-25 06:46:45 +00:00
"autoprefixer": "^10.4.19",
2024-03-12 10:40:53 +00:00
"eslint": "^8",
2024-03-25 06:46:45 +00:00
"eslint-config-next": "14.1.4",
"kysely-codegen": "^0.14.1",
2024-03-12 10:40:53 +00:00
"postcss": "^8",
2024-03-25 06:46:45 +00:00
"tailwindcss": "^3.4.1",
"type-fest": "^4.14.0",
2024-03-12 10:40:53 +00:00
"typescript": "^5"
}
}