Initial next app with favicon and metadata.

This commit is contained in:
2021-08-09 15:14:38 -05:00
parent cef40c17e9
commit 59dadfcd42
17 changed files with 3413 additions and 101 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint": "next lint"
},
"dependencies": {
"next": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^16.4.13",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"eslint": "^7.32.0",
"eslint-config-next": "^11.0.1",
"typescript": "4.3.5"
},
"license": "MIT"
}