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" +}