Merge pull request #11 from RandellDawson/feature/root-package-json

Adde `package.json` and `.gitignore` to the root folder.
This commit is contained in:
Randell Dawson
2018-11-27 22:20:42 -08:00
committed by mrugesh mohapatra
parent 091458c11c
commit c1c1154bc3
3 changed files with 45 additions and 0 deletions

23
dashboard-client/app/.gitignore vendored Normal file
View File

@ -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*

5
dashboard-client/app/package-lock.json generated Normal file
View File

@ -0,0 +1,5 @@
{
"name": "pr-relations",
"version": "0.1.0",
"lockfileVersion": 1
}

View File

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