package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 -p 8080",
  8. "export": "NODE_ENV=production ENV=production 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. "@babel/core": "^7.8.4",
  17. "@babel/polyfill": "^7.8.3",
  18. "@material-ui/core": "^4.6.1",
  19. "@types/lodash": "^4.14.149",
  20. "babel-plugin-inline-react-svg": "^1.1.0",
  21. "core-js": "3.6.4",
  22. "immer": "^5.0.0",
  23. "isomorphic-unfetch": "^3.0.0",
  24. "js-cookie": "^2.2.0",
  25. "lodash": "^4.17.15",
  26. "mobile-detect": "^1.4.3",
  27. "next": "9.2.1",
  28. "next-i18next": "4.1.0",
  29. "next-transpile-modules": "^2.3.1",
  30. "notistack": "^0.9.6",
  31. "pdfjs-dist": "2.3.200",
  32. "prop-types": "^15.6.2",
  33. "query-string": "^6.9.0",
  34. "react": "16.10.0",
  35. "react-dom": "16.10.0",
  36. "react-popper": "^1.3.6",
  37. "redux-devtools-extension": "^2.13.5",
  38. "rxjs": "^6.5.3",
  39. "styled-components": "5.0.0",
  40. "webpack": "^4.41.2"
  41. },
  42. "license": "MIT",
  43. "devDependencies": {
  44. "@babel/node": "^7.2.2",
  45. "@babel/preset-env": "^7.8.3",
  46. "@testing-library/jest-dom": "^4.2.3",
  47. "@testing-library/react": "^9.3.2",
  48. "@types/jest": "^24.0.23",
  49. "@types/node": "^12.12.7",
  50. "@types/react": "^16.9.11",
  51. "@types/react-dom": "^16.9.4",
  52. "@types/react-redux": "^7.1.5",
  53. "@types/styled-components": "^4.4.0",
  54. "@typescript-eslint/eslint-plugin": "^2.8.0",
  55. "@typescript-eslint/parser": "^2.8.0",
  56. "babel-eslint": "^10.0.1",
  57. "babel-jest": "^25.0.0",
  58. "babel-plugin-styled-components": "^1.7.1",
  59. "eslint": "^5.6.0",
  60. "eslint-config-airbnb": "^17.1.0",
  61. "eslint-config-prettier": "^6.7.0",
  62. "eslint-import-resolver-typescript": "^2.0.0",
  63. "eslint-plugin-import": "^2.18.2",
  64. "eslint-plugin-jsx-a11y": "^6.1.1",
  65. "eslint-plugin-prettier": "^3.1.1",
  66. "eslint-plugin-react": "^7.11.1",
  67. "eslint-plugin-react-hooks": "^2.2.0",
  68. "jest": "24.9.0",
  69. "jest-styled-components": "^6.2.1",
  70. "pre-commit": "^1.2.2",
  71. "prettier": "^1.19.1",
  72. "react-test-renderer": "^16.5.2",
  73. "ts-jest": "^24.2.0",
  74. "typescript": "^3.7.2",
  75. "webpack-cli": "^3.2.3",
  76. "webpack-node-externals": "^1.7.2"
  77. },
  78. "engines": {
  79. "node": ">=10.0.0"
  80. }
  81. }