package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "create-next-example-app",
  3. "version": "1.0.0",
  4. "scripts": {
  5. "dev": "next -p 8080",
  6. "build": "next build",
  7. "start": "next start",
  8. "export": "npm run build && next export",
  9. "lint": "eslint . --ext .ts,.tsx",
  10. "test": "jest --config=./config/jest.config.js"
  11. },
  12. "pre-commit": [
  13. "lint"
  14. ],
  15. "dependencies": {
  16. "@material-ui/core": "^4.6.1",
  17. "babel-plugin-inline-react-svg": "^1.1.0",
  18. "immer": "^5.0.0",
  19. "isomorphic-unfetch": "^3.0.0",
  20. "js-cookie": "^2.2.0",
  21. "mobile-detect": "^1.4.3",
  22. "next": "9.1.6",
  23. "next-i18next": "^2.0.0",
  24. "next-transpile-modules": "^2.3.1",
  25. "notistack": "^0.9.6",
  26. "pdfjs-dist": "^2.2.228",
  27. "prop-types": "^15.6.2",
  28. "query-string": "^6.9.0",
  29. "react": "16.10.0",
  30. "react-dom": "16.10.0",
  31. "react-popper": "^1.3.6",
  32. "redux-devtools-extension": "^2.13.5",
  33. "rxjs": "^6.5.3",
  34. "styled-components": "4.4.0",
  35. "webpack": "^4.41.2"
  36. },
  37. "license": "MIT",
  38. "devDependencies": {
  39. "@babel/node": "^7.2.2",
  40. "@testing-library/jest-dom": "^4.2.3",
  41. "@testing-library/react": "^9.3.2",
  42. "@types/jest": "^24.0.23",
  43. "@types/node": "^12.12.7",
  44. "@types/react": "^16.9.11",
  45. "@types/react-dom": "^16.9.4",
  46. "@types/react-redux": "^7.1.5",
  47. "@types/styled-components": "^4.4.0",
  48. "@typescript-eslint/eslint-plugin": "^2.8.0",
  49. "@typescript-eslint/parser": "^2.8.0",
  50. "babel-eslint": "^10.0.1",
  51. "babel-jest": "^25.0.0",
  52. "babel-plugin-styled-components": "^1.7.1",
  53. "eslint": "^5.6.0",
  54. "eslint-config-airbnb": "^17.1.0",
  55. "eslint-config-prettier": "^6.7.0",
  56. "eslint-import-resolver-typescript": "^2.0.0",
  57. "eslint-plugin-import": "^2.18.2",
  58. "eslint-plugin-jsx-a11y": "^6.1.1",
  59. "eslint-plugin-prettier": "^3.1.1",
  60. "eslint-plugin-react": "^7.11.1",
  61. "eslint-plugin-react-hooks": "^2.2.0",
  62. "jest": "24.9.0",
  63. "jest-styled-components": "^6.2.1",
  64. "pre-commit": "^1.2.2",
  65. "prettier": "^1.19.1",
  66. "react-test-renderer": "^16.5.2",
  67. "ts-jest": "^24.2.0",
  68. "typescript": "^3.7.2",
  69. "webpack-cli": "^3.2.3",
  70. "webpack-node-externals": "^1.7.2"
  71. },
  72. "engines": {
  73. "node": ">=10.0.0"
  74. }
  75. }