package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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": "NODE_ENV=production 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"
  11. },
  12. "pre-commit": [
  13. "lint"
  14. ],
  15. "dependencies": {
  16. "babel-plugin-inline-react-svg": "^1.1.0",
  17. "dayjs": "^1.8.23",
  18. "i18next": "^19.4.0",
  19. "i18next-browser-languagedetector": "^4.0.2",
  20. "lodash": "^4.17.15",
  21. "mobile-detect": "^1.4.4",
  22. "next": "9.5.0",
  23. "next-i18next": "4.3.0",
  24. "pdfjs-dist": "2.3.200",
  25. "print-js": "^1.0.63",
  26. "query-string": "5",
  27. "react": "16.13.0",
  28. "react-color": "2.17.3",
  29. "react-dom": "16.13.0",
  30. "react-i18next": "^11.3.4",
  31. "react-popper": "^1.3.6",
  32. "react-toast-notifications": "^2.4.0",
  33. "react-use-gesture": "^7.0.16",
  34. "rxjs": "^6.5.3",
  35. "styled-components": "5.1.1",
  36. "uuid": "^7.0.2",
  37. "webpack": "^4.41.2"
  38. },
  39. "license": "MIT",
  40. "devDependencies": {
  41. "@babel/node": "^7.2.2",
  42. "@babel/preset-env": "^7.8.3",
  43. "@testing-library/jest-dom": "^5.8.0",
  44. "@testing-library/react": "^10.0.4",
  45. "@types/jest": "^24.0.23",
  46. "@types/lodash": "^4.14.149",
  47. "@types/node": "^12.12.7",
  48. "@types/react": "^16.9.11",
  49. "@types/react-dom": "^16.9.4",
  50. "@types/styled-components": "^5.1.0",
  51. "@types/uuid": "^7.0.0",
  52. "@typescript-eslint/eslint-plugin": "^2.8.0",
  53. "@typescript-eslint/parser": "^2.8.0",
  54. "babel-eslint": "^10.0.1",
  55. "babel-jest": "^25.0.0",
  56. "babel-plugin-styled-components": "^1.7.1",
  57. "eslint": "^6.8.0",
  58. "eslint-config-airbnb": "^18.1.0",
  59. "eslint-config-prettier": "^6.11.0",
  60. "eslint-plugin-import": "^2.20.2",
  61. "eslint-plugin-jsx-a11y": "^6.2.3",
  62. "eslint-plugin-prettier": "^3.1.3",
  63. "eslint-plugin-react": "^7.19.0",
  64. "eslint-plugin-react-hooks": "^2.5.1",
  65. "jest": "24.9.0",
  66. "pre-commit": "^1.2.2",
  67. "prettier": "^1.19.1",
  68. "react-test-renderer": "^16.5.2",
  69. "ts-jest": "^24.2.0",
  70. "typescript": "^3.7.2",
  71. "webpack-cli": "^3.2.3",
  72. "webpack-node-externals": "^1.7.2"
  73. },
  74. "engines": {
  75. "node": ">=10.0.0"
  76. }
  77. }