repo setup

This commit is contained in:
wass08
2026-01-14 09:03:07 +09:00
parent d5f4648c39
commit c9d84ea126
53 changed files with 609 additions and 747 deletions
+37
View File
@@ -0,0 +1,37 @@
{
"name": "web",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev --port 3000",
"build": "next build",
"start": "next start",
"lint": "eslint --max-warnings 0",
"check-types": "next typegen && tsc --noEmit"
},
"dependencies": {
"@pascal-app/core": "*",
"@react-three/drei": "^10",
"@react-three/fiber": "^9",
"@react-three/uikit-lucide": "^1.0.60",
"@repo/ui": "*",
"@tailwindcss/postcss": "^4.1.18",
"@types/three": "^0.182.0",
"next": "16.1.0",
"postcss": "^8.5.6",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwindcss": "^4.1.18",
"three": "^0.182.0"
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@types/node": "^22.15.3",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"eslint": "^9.39.1",
"typescript": "5.9.2"
}
}