Updated to Next.js 13

This commit is contained in:
Antonello Zanini
2022-11-18 13:54:54 +01:00
commit 0eae94dbe6
40 changed files with 6381 additions and 0 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "brevifolia-next",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@next/font": "13.0.4",
"gray-matter": "^4.0.3",
"next": "13.0.4",
"node-glob": "^1.2.0",
"raw-loader": "^4.0.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-markdown": "^8.0.3"
},
"devDependencies": {
"eslint": "8.27.0",
"eslint-config-next": "13.0.4"
}
}