[feat][m] - stub out next.js page and setup CI

This commit is contained in:
Gift Egwuenu
2020-05-25 14:49:52 +01:00
parent 12026d947d
commit 96e1c4d6ae
12 changed files with 12333 additions and 5535 deletions

View File

@@ -5,11 +5,21 @@
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
"start": "next start",
"test": "jest --watch"
},
"dependencies": {
"next": "9.4.2",
"react": "16.13.1",
"react-dom": "16.13.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.8.0",
"@testing-library/react": "^10.0.4",
"@types/react": "^16.9.35",
"babel-jest": "^26.0.1",
"jest": "^26.0.1",
"react-test-renderer": "^16.13.1",
"typescript": "^3.9.3"
}
}