package.json 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "name": "create-next-example-app",
  3. "version": "1.0.0",
  4. "scripts": {
  5. "dev": "babel-node ./server",
  6. "build": "yarn build:next && yarn build:server",
  7. "build:next": "next build",
  8. "build:server": "webpack --config ./server/webpack.config.js",
  9. "start": "node .next/server.bundle.js",
  10. "export": "npm run build && next export",
  11. "lint": "eslint . --ext .js,.jsx,.ts,.tsx",
  12. "test": "jest --config=./config/jest.config.js"
  13. },
  14. "pre-commit": [
  15. "lint"
  16. ],
  17. "dependencies": {
  18. "@loadable/component": "^5.10.3",
  19. "@material-ui/core": "^4.6.1",
  20. "babel-plugin-inline-react-svg": "^1.1.0",
  21. "body-parser": "^1.18.3",
  22. "compression": "^1.7.4",
  23. "cookie-parser": "^1.4.3",
  24. "express": "^4.17.1",
  25. "express-session": "^1.15.6",
  26. "immer": "^5.0.0",
  27. "isomorphic-unfetch": "^3.0.0",
  28. "js-cookie": "^2.2.0",
  29. "mobile-detect": "^1.4.3",
  30. "morgan": "^1.9.1",
  31. "next": "^9.1.2",
  32. "next-i18next": "^2.0.0",
  33. "next-redux-saga": "^3.0.0",
  34. "next-redux-wrapper": "^2.0.0",
  35. "notistack": "^0.9.6",
  36. "pdfjs-dist": "^2.2.228",
  37. "prop-types": "^15.6.2",
  38. "react": "16.10.0",
  39. "react-dom": "16.10.0",
  40. "react-redux": "^7.1.1",
  41. "redux": "^4.0.0",
  42. "redux-devtools-extension": "^2.13.5",
  43. "redux-saga": "^1.1.1",
  44. "styled-components": "4.4.0",
  45. "webpack": "^4.41.2"
  46. },
  47. "license": "MIT",
  48. "devDependencies": {
  49. "@babel/node": "^7.2.2",
  50. "@testing-library/jest-dom": "^4.2.3",
  51. "@testing-library/react": "^9.3.2",
  52. "@types/jest": "^24.0.23",
  53. "@types/node": "^12.12.7",
  54. "@types/react": "^16.9.11",
  55. "@types/react-dom": "^16.9.4",
  56. "@types/react-redux": "^7.1.5",
  57. "@types/styled-components": "^4.4.0",
  58. "@typescript-eslint/eslint-plugin": "^2.8.0",
  59. "@typescript-eslint/parser": "^2.8.0",
  60. "babel-eslint": "^10.0.1",
  61. "babel-jest": "^25.0.0",
  62. "babel-plugin-styled-components": "^1.7.1",
  63. "eslint": "^5.6.0",
  64. "eslint-config-airbnb": "^17.1.0",
  65. "eslint-config-prettier": "^6.7.0",
  66. "eslint-import-resolver-typescript": "^2.0.0",
  67. "eslint-plugin-import": "^2.18.2",
  68. "eslint-plugin-jsx-a11y": "^6.1.1",
  69. "eslint-plugin-prettier": "^3.1.1",
  70. "eslint-plugin-react": "^7.11.1",
  71. "eslint-plugin-react-hooks": "^2.2.0",
  72. "jest": "^25.0.0",
  73. "jest-styled-components": "^6.2.1",
  74. "pre-commit": "^1.2.2",
  75. "prettier": "^1.19.1",
  76. "react-test-renderer": "^16.5.2",
  77. "secure-env": "^1.2.0",
  78. "typescript": "^3.7.2",
  79. "webpack-cli": "^3.2.3",
  80. "webpack-node-externals": "^1.7.2"
  81. },
  82. "engines": {
  83. "node": ">=10.0.0"
  84. }
  85. }