This commit is contained in:
Morten Olsen
2021-08-25 22:48:59 +02:00
commit 175bdd17e7
15 changed files with 2469 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "^11.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.1"
},
"devDependencies": {
"@types/react": "^17.0.19",
"@types/styled-components": "^5.1.12",
"babel-plugin-styled-components": "^1.13.2",
"typescript": "^4.3.5"
}
}