Next.js template
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 640B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "diligent-next",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "dev": "cross-env NODE_OPTIONS='--inspect' next dev",
  7. "build": "next build",
  8. "start": "next start",
  9. "lint": "next lint",
  10. "prettier": "prettier --write .",
  11. "prepare": "husky install"
  12. },
  13. "dependencies": {
  14. "next": "12.2.3",
  15. "react": "18.2.0",
  16. "react-dom": "18.2.0"
  17. },
  18. "devDependencies": {
  19. "@commitlint/cli": "^17.0.3",
  20. "@commitlint/config-conventional": "^17.0.3",
  21. "cross-env": "^7.0.3",
  22. "eslint": "8.21.0",
  23. "eslint-config-next": "12.2.3",
  24. "husky": "^8.0.1",
  25. "prettier": "^2.7.1"
  26. }
  27. }