From ab17f9148af6811a53bf323172d045cc71ecfb6d Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Thu, 12 Aug 2021 18:45:12 +0200 Subject: [PATCH] Initial --- .gitignore | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++ package.json | 7 ++++++ 2 files changed, 69 insertions(+) create mode 100644 .gitignore create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2e20971 --- /dev/null +++ b/.gitignore @@ -0,0 +1,62 @@ +# ---> VisualStudioCode +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +*.code-workspace + +# Local History for Visual Studio Code +.history/ + +# ---> Node +# 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 + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Dependency directories +node_modules/ +jspm_packages/ + +# 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 + +# Yarn Integrity file +.yarn-integrity + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# yarn v2 +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* +yarn.lock +package-lock.json \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..3b45879 --- /dev/null +++ b/package.json @@ -0,0 +1,7 @@ +{ + "name": "shortener-backend", + "version": "0.0.1", + "main": "index.js", + "license": "MIT", + "private": false +}