Scaffold admin app

This commit is contained in:
David Stotijn
2019-11-30 12:43:55 +01:00
parent e4f5f2278a
commit 94363fe196
13 changed files with 5559 additions and 3 deletions

16
admin/package.json Normal file
View File

@ -0,0 +1,16 @@
{
"name": "gurp-admin",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export -o build"
},
"dependencies": {
"next": "9.1.4",
"react": "16.12.0",
"react-dom": "16.12.0"
}
}