Commitment

main
nightly 2022-10-14 12:37:19 +02:00
commit c481ef1230
7 changed files with 5184 additions and 0 deletions

3
.eslintrc.json Normal file
View File

@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.next/
node_modules/

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# MangoRecipe
A recipe manager made with nextJS

5140
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

30
package.json Normal file
View File

@ -0,0 +1,30 @@
{
"name": "mangorecipe",
"version": "1.0.0",
"description": "A recipe manager with nextjs",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"repository": {
"type": "git",
"url": "https://tea.nightly.town/Mangoberry/MangoRecipe"
},
"keywords": [
"recipemanager"
],
"author": "nightlymania",
"license": "GPL-2.0-or-later",
"dependencies": {
"next": "^12.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"eslint": "8.25.0",
"eslint-config-next": "12.3.1"
}
}

6
pages/index.js Normal file
View File

@ -0,0 +1,6 @@
function HomePage() {
return <div>Welcome to Next.js!</div>
}
export default HomePage

0
public/global.css Normal file
View File