diff --git a/app/.eslintrc.json b/.eslintrc.json similarity index 100% rename from app/.eslintrc.json rename to .eslintrc.json diff --git a/.gitignore b/.gitignore index 6704566..c87c9b3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,104 +1,36 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -lerna-debug.log* - -# Diagnostic reports (https://nodejs.org/api/report.html) -report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. -# Runtime data -pids -*.pid -*.seed -*.pid.lock +# dependencies +/node_modules +/.pnp +.pnp.js -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov +# testing +/coverage -# Coverage directory used by tools like istanbul -coverage -*.lcov +# next.js +/.next/ +/out/ -# nyc test coverage -.nyc_output +# production +/build -# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) -.grunt +# misc +.DS_Store +*.pem -# Bower dependency directory (https://bower.io/) -bower_components - -# node-waf configuration -.lock-wscript - -# Compiled binary addons (https://nodejs.org/api/addons.html) -build/Release +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.pnpm-debug.log* -# Dependency directories -node_modules/ -jspm_packages/ +# local env files +.env*.local -# TypeScript v1 declaration files -typings/ +# vercel +.vercel -# TypeScript cache +# typescript *.tsbuildinfo - -# Optional npm cache directory -.npm - -# Optional eslint cache -.eslintcache - -# Microbundle cache -.rpt2_cache/ -.rts2_cache_cjs/ -.rts2_cache_es/ -.rts2_cache_umd/ - -# Optional REPL history -.node_repl_history - -# Output of 'npm pack' -*.tgz - -# Yarn Integrity file -.yarn-integrity - -# dotenv environment variables file -.env -.env.test - -# parcel-bundler cache (https://parceljs.org/) -.cache - -# Next.js build output -.next - -# Nuxt.js build / generate output -.nuxt -dist - -# Gatsby files -.cache/ -# Comment in the public line in if your project uses Gatsby and *not* Next.js -# https://nextjs.org/blog/next-9-1#public-directory-support -# public - -# vuepress build output -.vuepress/dist - -# Serverless directories -.serverless/ - -# FuseBox cache -.fusebox/ - -# DynamoDB Local files -.dynamodb/ - -# TernJS port file -.tern-port +next-env.d.ts diff --git a/app/.gitignore b/app/.gitignore deleted file mode 100644 index c87c9b3..0000000 --- a/app/.gitignore +++ /dev/null @@ -1,36 +0,0 @@ -# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. - -# dependencies -/node_modules -/.pnp -.pnp.js - -# testing -/coverage - -# next.js -/.next/ -/out/ - -# production -/build - -# misc -.DS_Store -*.pem - -# debug -npm-debug.log* -yarn-debug.log* -yarn-error.log* -.pnpm-debug.log* - -# local env files -.env*.local - -# vercel -.vercel - -# typescript -*.tsbuildinfo -next-env.d.ts diff --git a/app/README.md b/app/README.md deleted file mode 100644 index 498218e..0000000 --- a/app/README.md +++ /dev/null @@ -1,3 +0,0 @@ -This is a Next.js app (v13.0.3) - -See: https://nextjs.org/docs/getting-started diff --git a/app/next.config.js b/next.config.js similarity index 100% rename from app/next.config.js rename to next.config.js diff --git a/app/package-lock.json b/package-lock.json similarity index 100% rename from app/package-lock.json rename to package-lock.json diff --git a/app/package.json b/package.json similarity index 100% rename from app/package.json rename to package.json diff --git a/app/pages/_app.tsx b/pages/_app.tsx similarity index 100% rename from app/pages/_app.tsx rename to pages/_app.tsx diff --git a/app/pages/index.tsx b/pages/index.tsx similarity index 100% rename from app/pages/index.tsx rename to pages/index.tsx diff --git a/app/public/favicon.ico b/public/favicon.ico similarity index 100% rename from app/public/favicon.ico rename to public/favicon.ico diff --git a/app/repositories.json b/repositories.json similarity index 100% rename from app/repositories.json rename to repositories.json diff --git a/app/styles/Home.module.css b/styles/Home.module.css similarity index 100% rename from app/styles/Home.module.css rename to styles/Home.module.css diff --git a/app/styles/globals.css b/styles/globals.css similarity index 100% rename from app/styles/globals.css rename to styles/globals.css diff --git a/app/tsconfig.json b/tsconfig.json similarity index 100% rename from app/tsconfig.json rename to tsconfig.json