Skip to content

Commit

Permalink
Merge pull request #54 from /issues/52
Browse files Browse the repository at this point in the history
Issues/52
  • Loading branch information
suguru-toyohara authored Jan 25, 2024
2 parents 8c97cd5 + a93e6a2 commit f952a45
Show file tree
Hide file tree
Showing 8 changed files with 437 additions and 199 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,5 @@ next-env.d.ts
postgres-data

# temporary file
tmp
tmp
.tw-patch/
30 changes: 29 additions & 1 deletion .tw-patch/tw-class-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,27 @@
"[out:json]",
"[timeout:30000]",
"absolute",
"bg-black",
"bg-black/70",
"bg-white",
"bg-zinc-200",
"bg-zinc-500",
"block",
"border",
"border-2",
"border-b",
"border-gray-300",
"border-zinc-200",
"border-zinc-900",
"bottom-1",
"bottom-10",
"bottom-7",
"container",
"cursor-pointer",
"disabled:bg-zinc-200",
"disabled:hover:bg-zinc-200",
"disabled:text-zinc-900",
"duration-150",
"ease-in-out",
"filter",
"flex",
"flex-1",
Expand All @@ -37,6 +45,9 @@
"h-full",
"h-screen",
"hidden",
"hover:bg-zinc-300",
"hover:bg-zinc-50",
"hover:bg-zinc-900",
"items-center",
"items-end",
"justify-center",
Expand All @@ -48,19 +59,31 @@
"min-h-10",
"min-h-4",
"min-w-10",
"mr-2",
"mt-2",
"my-2",
"my-3",
"overflow-hidden",
"overflow-scroll",
"p-2",
"p-5",
"p-8",
"pb-0",
"pb-0.5",
"pl-3",
"pl-5",
"pr-2",
"print:h-full",
"print:hidden",
"pt-0",
"pt-0.5",
"pt-3",
"pt-5",
"px-1",
"px-3",
"px-4",
"py-1",
"py-1.5",
"py-2",
"py-4",
"relative",
Expand All @@ -79,14 +102,19 @@
"sm:h-screen",
"sm:max-w-sm",
"sm:w-4/12",
"sm:w-fit",
"space-x-1",
"text-base",
"text-center",
"text-lg",
"text-red-400",
"text-sm",
"text-white",
"text-xs",
"text-zinc-400",
"text-zinc-900",
"top-0",
"transition-colors",
"truncate",
"w-10",
"w-5",
Expand Down
4 changes: 4 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ let generatedStrings = new Map();

/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
missingSuspenseWithCSRBailout: false,
},

// ウェブパックの設定
webpack: (config, { dev }) => {
config.infrastructureLogging = {
Expand Down
23 changes: 12 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,39 +19,40 @@
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.4",
"@mui/material": "^5.15.4",
"@mui/icons-material": "^5.15.6",
"@mui/material": "^5.15.6",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^5.7.1",
"@prisma/client": "^5.8.1",
"@turf/turf": "^6.5.0",
"@types/geojson": "^7946.0.13",
"esm": "^3.2.25",
"glob": "^10.3.10",
"js-yaml": "^4.1.0",
"maplibre-gl": "^3.6.2",
"next": "14.0.4",
"next": "14.1.0",
"next-auth": "5.0.0-beta.5",
"osmtogeojson": "^3.0.0-beta.5",
"react": "^18",
"react-dom": "^18",
"react-icons": "^4.12.0",
"react-hook-form": "^7.49.3",
"react-icons": "^5.0.1",
"react-map-gl": "^7.1.7",
"sass": "^1.69.7",
"sass": "^1.70.0",
"ts-md5": "^1.3.1"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.6",
"@types/node": "^20.11.5",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.16",
"autoprefixer": "^10.4.17",
"cssnano": "^6.0.3",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"eslint-config-next": "14.1.0",
"postcss": "^8.4.33",
"prettier": "3.1.1",
"prettier": "3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"prisma": "5.7.1",
"prisma": "5.8.1",
"tailwindcss": "^3.4.1",
"tailwindcss-patch": "^2.2.2",
"ts-node": "^10.9.2",
Expand Down
Loading

0 comments on commit f952a45

Please sign in to comment.