Publish Progress #1

Merged
me merged 28 commits from init into main 2025-01-04 09:00:20 -07:00
2 changed files with 45 additions and 0 deletions
Showing only changes of commit a1e85c9383 - Show all commits

23
.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*

22
package.json Normal file
View File

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