feat: initial commit from Create Next App

This commit is contained in:
Oliver Davies 2022-09-09 18:00:00 +01:00
parent 96167de713
commit 584fe6d245
18 changed files with 2486 additions and 7 deletions

23
package.json Normal file
View file

@ -0,0 +1,23 @@
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "12.3.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"autoprefixer": "^10.4.8",
"eslint": "8.23.0",
"eslint-config-next": "12.3.0",
"postcss": "^8.4.16",
"tailwindcss": "^3.1.8"
}
}