From a1e85c93836998bcd37cec0f91d1f9ffc69317d8 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Tue, 7 Mar 2023 05:02:38 -0600 Subject: [PATCH] Add project management type files. --- .gitignore | 23 +++++++++++++++++++++++ package.json | 22 ++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 .gitignore create mode 100644 package.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4d29575 --- /dev/null +++ b/.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/package.json b/package.json new file mode 100644 index 0000000..b1d10ee --- /dev/null +++ b/package.json @@ -0,0 +1,22 @@ +{ + "name": "food_diary", + "version": "1.0.0", + "description": "Food Diary UI for researching dietary sensitivities.", + "main": "index.tsx", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/Hyperling/food_diary.git" + }, + "author": "Hyperling", + "license": "MIT", + "bugs": { + "url": "https://github.com/Hyperling/food_diary/issues" + }, + "homepage": "https://github.com/Hyperling/food_diary#readme", + "dependencies": { + "package.json": "^2.0.1" + } +}