Merge pull request #11 from RandellDawson/feature/root-package-json
Adde `package.json` and `.gitignore` to the root folder.
This commit is contained in:
committed by
mrugesh mohapatra
parent
091458c11c
commit
c1c1154bc3
23
dashboard-client/app/.gitignore
vendored
Normal file
23
dashboard-client/app/.gitignore
vendored
Normal 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
5
dashboard-client/app/package-lock.json
generated
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"name": "pr-relations",
|
||||
"version": "0.1.0",
|
||||
"lockfileVersion": 1
|
||||
}
|
17
dashboard-client/app/package.json
Normal file
17
dashboard-client/app/package.json
Normal 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"
|
||||
}
|
Reference in New Issue
Block a user