package.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "react-app",
  3. "version": "0.1.0",
  4. "private": true,
  5. "scripts": {
  6. "clean": "rimraf ./dist/* && rimraf ./build/*",
  7. "start": "cross-env NODE_ENV=development node webpack/dev-server.js",
  8. "build": "cross-env NODE_ENV=development webpack --config webpack.config.js",
  9. "package": "cross-env NODE_ENV=production webpack --config webpack.config.js",
  10. "test": "cross-env NODE_ENV=test jest",
  11. "lint:js": "eslint ./src"
  12. },
  13. "dependencies": {
  14. "express": "4.16.3",
  15. "axios": "0.18.0",
  16. "classnames": "2.2.5",
  17. "lodash": "4.17.5",
  18. "moment": "2.20.0",
  19. "history": "4.7.2",
  20. "react": "^16.8.6",
  21. "react-dom": "^16.8.6",
  22. "react-redux": "^5.1.1",
  23. "react-router-dom": "^4.3.1",
  24. "react-router-redux": "5.0.0-alpha.8",
  25. "redux": "^3.7.2",
  26. "redux-actions": "^2.6.5",
  27. "redux-saga": "0.16.0",
  28. "reselect": "3.0.1",
  29. "query-string": "6.0.0"
  30. },
  31. "devDependencies": {
  32. "rimraf": "2.6.1",
  33. "cross-env": "5.1.4",
  34. "webpack": "4.5.0",
  35. "webpack-cli": "3.3.1",
  36. "webpack-dev-server": "3.1.3",
  37. "html-webpack-plugin": "3.2.0",
  38. "mini-css-extract-plugin": "0.4.0",
  39. "react-hot-loader": "3.1.3",
  40. "node-sass": "^4.11.0",
  41. "babel-core": "6.26.0",
  42. "babel-runtime": "6.26.0",
  43. "babel-loader": "7.1.4",
  44. "babel-preset-env": "^1.7.0",
  45. "babel-eslint": "8.2.2",
  46. "babel-preset-react": "6.24.1",
  47. "babel-plugin-transform-runtime": "6.23.0",
  48. "babel-plugin-transform-object-rest-spread": "6.26.0",
  49. "babel-plugin-lodash": "3.3.2",
  50. "css-loader": "^2.1.1",
  51. "sass-loader": "6.0.7",
  52. "style-loader": "0.20.3",
  53. "file-loader": "1.1.11",
  54. "postcss-loader": "2.1.3",
  55. "autoprefixer": "8.2.0",
  56. "cssnano": "4.1.10",
  57. "identity-obj-proxy": "3.0.0",
  58. "jest": "^20.0.4",
  59. "jest-cli": "^20.0.4",
  60. "babel-jest": "20.0.3",
  61. "eslint": "4.19.1",
  62. "eslint-config-standard": "^10.2.1",
  63. "eslint-config-standard-react": "^5.0.0",
  64. "eslint-loader": "^1.9.0",
  65. "eslint-plugin-import": "^2.7.0",
  66. "eslint-plugin-node": "^5.1.1",
  67. "eslint-plugin-promise": "^3.3.0",
  68. "eslint-plugin-react": "7.1.0",
  69. "eslint-plugin-jsx-a11y": "6.0.2",
  70. "eslint-plugin-standard": "3.0.1"
  71. }
  72. }