Commitment
commit
c481ef1230
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"extends": "next/core-web-vitals"
|
||||||
|
}
|
|
@ -0,0 +1,2 @@
|
||||||
|
.next/
|
||||||
|
node_modules/
|
File diff suppressed because it is too large
Load Diff
|
@ -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"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
function HomePage() {
|
||||||
|
return <div>Welcome to Next.js!</div>
|
||||||
|
}
|
||||||
|
|
||||||
|
export default HomePage
|
||||||
|
|
Loading…
Reference in New Issue