Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.51 KB | None | 0 0
  1. {
  2. "name": "inboundmuse",
  3. "version": "1.0.0",
  4. "scripts": {
  5. "dev": "npm run start",
  6. "start": "cross-env NODE_ENV=development node ./tools/start.js",
  7. "lint": "eslint .",
  8. "lint-fix": "eslint . --fix",
  9. "precommit": "lint-staged",
  10. "clean": "rimraf ./build",
  11. "build": "npm run clean && cross-env NODE_ENV=production node ./tools/build.js",
  12. "build-server": "npm run build && cross-env NODE_ENV=production node ./tools/buildServer.js"
  13. },
  14. "browserslist": [
  15. "> 1%",
  16. "last 2 versions",
  17. "IE 10"
  18. ],
  19. "lint-staged": {
  20. "*.js": [
  21. "eslint --fix",
  22. "git add"
  23. ]
  24. },
  25. "dll": {
  26. "exclude": [
  27. "include-media",
  28. "sanitize.css",
  29. "babel-polyfill"
  30. ]
  31. },
  32. "devDependencies": {
  33. "add-asset-html-webpack-plugin": "^2.1.1",
  34. "autoprefixer": "^7.1.4",
  35. "babel-core": "^6.26.0",
  36. "babel-eslint": "^7.2.3",
  37. "babel-loader": "^7.1.2",
  38. "babel-plugin-lodash": "^3.2.11",
  39. "babel-plugin-syntax-dynamic-import": "^6.18.0",
  40. "babel-plugin-transform-react-remove-prop-types": "^0.4.8",
  41. "babel-preset-env": "^1.6.0",
  42. "babel-preset-react": "^6.24.1",
  43. "babel-preset-stage-0": "^6.24.1",
  44. "browser-sync": "^2.18.13",
  45. "chalk": "^2.1.0",
  46. "compression": "^1.7.0",
  47. "connect-history-api-fallback": "^1.3.0",
  48. "cross-env": "^5.0.5",
  49. "css-loader": "^0.28.5",
  50. "eslint": "^4.5.0",
  51. "eslint-config-standard": "^10.2.1",
  52. "eslint-config-standard-react": "^5.0.0",
  53. "eslint-plugin-babel": "^4.1.2",
  54. "eslint-plugin-import": "^2.7.0",
  55. "eslint-plugin-node": "^5.1.1",
  56. "eslint-plugin-promise": "^3.5.0",
  57. "eslint-plugin-react": "^7.3.0",
  58. "eslint-plugin-standard": "^3.0.1",
  59. "extract-text-webpack-plugin": "^3.0.0",
  60. "file-loader": "^0.11.2",
  61. "fs-extra": "^4.0.1",
  62. "html-webpack-plugin": "^2.30.1",
  63. "img-loader": "^2.0.0",
  64. "lint-staged": "^4.0.4",
  65. "lodash-webpack-plugin": "^0.11.4",
  66. "node-sass": "^4.5.3",
  67. "postcss-loader": "^2.0.6",
  68. "prop-types": "^15.5.10",
  69. "react-hot-loader": "3.0.0-beta.7",
  70. "resolve-url-loader": "^2.1.0",
  71. "rimraf": "^2.6.1",
  72. "sass-loader": "^6.0.6",
  73. "script-loader": "^0.7.0",
  74. "style-loader": "^0.18.2",
  75. "svg-sprite-loader": "^0.3.0",
  76. "svgo-loader": "^1.2.1",
  77. "webpack": "^3.6.0",
  78. "webpack-dev-middleware": "^1.12.0",
  79. "webpack-hot-middleware": "^2.18.2"
  80. },
  81. "dependencies": {
  82. "babel-polyfill": "^6.26.0",
  83. "bootstrap-sass": "^3.3.7",
  84. "classnames": "^2.2.5",
  85. "d3-color": "^1.0.3",
  86. "d3-scale": "^1.0.6",
  87. "fastclick": "^1.0.6",
  88. "gsap": "^1.20.2",
  89. "immutable": "^3.8.1",
  90. "include-media": "^1.4.9",
  91. "isinviewport": "^1.0.0",
  92. "jquery": "^3.2.1",
  93. "lodash": "^4.17.4",
  94. "mobile-detect": "^1.3.7",
  95. "moment": "^2.18.1",
  96. "normalizr": "^3.2.3",
  97. "query-string": "^5.0.0",
  98. "react": "^15.6.1",
  99. "react-dom": "^15.6.1",
  100. "react-grid-layout": "^0.15.3",
  101. "react-id-swiper": "^1.4.0",
  102. "react-joyride": "^1.10.1",
  103. "react-recaptcha": "^2.3.3",
  104. "react-redux": "^5.0.6",
  105. "react-resizable": "^1.7.5",
  106. "react-router": "3.0.5",
  107. "react-router-redux": "^4.0.8",
  108. "react-select": "^1.0.0-rc.5",
  109. "react-transition-group": "1.1.3",
  110. "recharts": "^1.0.0-apha.5",
  111. "redux": "^3.7.2",
  112. "redux-saga": "^0.15.6",
  113. "reselect": "^3.0.1",
  114. "sanitize.css": "^5.0.0",
  115. "scrollmagic": "^2.0.5",
  116. "swiper": "^3.4.2",
  117. "whatwg-fetch": "^2.0.3"
  118. }
  119. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement