The serverless API for our final software engineering project.

package.json 564B

12345678910111213141516171819202122232425
  1. {
  2. "name": "renacer-api",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "dev": "next dev",
  7. "build": "next build",
  8. "start": "next start",
  9. "lint": "next lint"
  10. },
  11. "dependencies": {
  12. "@notionhq/client": "^2.2.2",
  13. "@types/node": "18.11.11",
  14. "@types/react": "18.0.26",
  15. "@types/react-dom": "18.0.9",
  16. "eslint": "8.29.0",
  17. "eslint-config-next": "13.0.6",
  18. "next": "13.0.6",
  19. "nextjs-cors": "^2.1.2",
  20. "notion-client": "^6.15.6",
  21. "react": "18.2.0",
  22. "react-dom": "18.2.0",
  23. "typescript": "4.9.3"
  24. }
  25. }