This commit is contained in:
quantulr
2023-10-27 17:29:50 +08:00
parent dd9ae31b30
commit 73bc779168
31 changed files with 591 additions and 165 deletions

View File

@ -6,22 +6,26 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"format": "prettier --write \"app/**/*.{js,jsx,ts,tsx,json,md}\""
},
"dependencies": {
"axios": "^1.6.0",
"next": "14.0.0",
"react": "^18",
"react-dom": "^18",
"next": "14.0.0"
"react-dom": "^18"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"postcss": "^8",
"tailwindcss": "^3",
"eslint": "^8",
"eslint-config-next": "14.0.0"
"eslint-config-next": "14.0.0",
"postcss": "^8",
"prettier": "^3.0.3",
"sass": "^1.69.5",
"tailwindcss": "^3",
"typescript": "^5"
}
}