From c1c1154bc382138b4f9053dc67288b36a7d85095 Mon Sep 17 00:00:00 2001 From: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> Date: Tue, 27 Nov 2018 22:20:42 -0800 Subject: [PATCH] Merge pull request #11 from RandellDawson/feature/root-package-json Adde `package.json` and `.gitignore` to the root folder. --- dashboard-client/app/.gitignore | 23 +++++++++++++++++++++++ dashboard-client/app/package-lock.json | 5 +++++ dashboard-client/app/package.json | 17 +++++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 dashboard-client/app/.gitignore create mode 100644 dashboard-client/app/package-lock.json create mode 100644 dashboard-client/app/package.json diff --git a/dashboard-client/app/.gitignore b/dashboard-client/app/.gitignore new file mode 100644 index 0000000000..4d29575de8 --- /dev/null +++ b/dashboard-client/app/.gitignore @@ -0,0 +1,23 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# production +/build + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* diff --git a/dashboard-client/app/package-lock.json b/dashboard-client/app/package-lock.json new file mode 100644 index 0000000000..9a56ea742d --- /dev/null +++ b/dashboard-client/app/package-lock.json @@ -0,0 +1,5 @@ +{ + "name": "pr-relations", + "version": "0.1.0", + "lockfileVersion": 1 +} diff --git a/dashboard-client/app/package.json b/dashboard-client/app/package.json new file mode 100644 index 0000000000..7a92e223fc --- /dev/null +++ b/dashboard-client/app/package.json @@ -0,0 +1,17 @@ +{ + "name": "pr-relations", + "version": "0.1.0", + "description": "Pull request query tool.", + "main": "index.js", + "scripts": { + "setup": "npm install && npm install app" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/RandellDawson/pr-relations.git" + }, + "bugs": { + "url": "https://github.com/RandellDawson/pr-relations/issues" + }, + "homepage": "https://github.com/RandellDawson/pr-relations#readme" +}