This commit is contained in:
Thomas Ruoff
2020-08-06 23:30:17 +02:00
parent 5dac8f20a3
commit ed6cc248c4
4 changed files with 4113 additions and 24 deletions

View File

@@ -5,7 +5,9 @@
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
"start": "next start",
"test:watch": "jest --watch",
"test:ci": "jest"
},
"dependencies": {
"bootstrap": "^4.5.0",
@@ -21,7 +23,9 @@
"swr": "^0.2.3"
},
"devDependencies": {
"babel-jest": "^26.2.2",
"eslint": "^7.5.0",
"eslint-plugin-react": "^7.20.5"
"eslint-plugin-react": "^7.20.5",
"jest": "^26.2.2"
}
}