Add Dockerfile

This commit is contained in:
David Stotijn
2020-09-24 22:28:37 +02:00
parent 8828a586a1
commit 28ae2b6efb
6 changed files with 46 additions and 20 deletions

2
admin/.gitignore vendored
View File

@ -1,5 +1,5 @@
/node_modules
/.next
/build
/dist
*.log*

View File

@ -6,7 +6,7 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export"
"export": "next build && next export -o dist"
},
"dependencies": {
"@apollo/client": "^3.2.0",
@ -22,7 +22,8 @@
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-monaco-editor": "^0.34.0",
"react-syntax-highlighter": "^13.5.3"
"react-syntax-highlighter": "^13.5.3",
"typescript": "^4.0.3"
},
"devDependencies": {
"@types/node": "^14.11.1",
@ -30,7 +31,6 @@
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
"prettier": "^2.1.2"
}
}