The serverless API for our final software engineering project.

package.json 503B

1234567891011121314151617181920212223
  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. "react": "18.2.0",
  20. "react-dom": "18.2.0",
  21. "typescript": "4.9.3"
  22. }
  23. }