initial commit

This commit is contained in:
Conrad
2021-06-16 22:56:42 -04:00
parent 49ae84adca
commit fd3ed61089
15 changed files with 3517 additions and 2 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "next-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "11.0.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/react": "17.0.11",
"eslint": "7.28.0",
"eslint-config-next": "11.0.0",
"typescript": "4.3.3"
}
}