Skip to content

Commit

Permalink
Setup empty NPM repo; added .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
neil-hughes committed Apr 13, 2022
1 parent 90d215b commit a3849ad
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage


# production
/build
/dist
/frontend/src/interface/build

# misc
.DS_Store
.env
.env.prod
.env.dev
.env.local
.env.development.local
.env.test.local
.env.production.local
.env.*

npm-debug.log*
yarn-debug.log*
yarn-error.log*

TODO
22 changes: 22 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "lm-code-intro-react-router-fakelandia",
"version": "1.0.0",
"description": "## Introduction",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techreturners/lm-code-intro-react-router-fakelandia.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/techreturners/lm-code-intro-react-router-fakelandia/issues"
},
"homepage": "https://github.com/techreturners/lm-code-intro-react-router-fakelandia#readme"
}

0 comments on commit a3849ad

Please sign in to comment.