migrated to nextjs

This commit is contained in:
cupcakearmy
2020-01-05 17:34:03 +01:00
parent fafaff3990
commit 3a2ee3cd7c
51 changed files with 6321 additions and 287 deletions

View File

@@ -1,22 +1,24 @@
{
"private": true,
"scripts": {
"build": "parcel build ./src/index.html",
"dev": "parcel ./src/index.html"
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"animejs": "3.x",
"parcel-bundler": "1.x",
"next": "9.x",
"react": "16.12.x",
"react-dom": "16.12.x",
"react-router-dom": "5.x"
"react-dom": "16.12.x"
},
"devDependencies": {
"@types/animejs": "3.x",
"@types/node": "^13.1.4",
"@types/react": "16.9.x",
"@types/react-dom": "16.9.x",
"@types/react-router-dom": "5.x",
"stylus": "0.54.x",
"@zeit/next-css": "^1.0.1",
"@zeit/next-stylus": "^1.0.1",
"stylus": "^0.54.7",
"typescript": "3.7.x"
}
}
}