package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "AutoMate",
  3. "version": "0.1.0",
  4. "private": true,
  5. "dependencies": {
  6. "lodash": "4.17.4",
  7. "react": "15.4.2",
  8. "react-addons-css-transition-group": "15.4.2",
  9. "react-dom": "15.4.2",
  10. "react-redux": "5.0.3",
  11. "react-router": "3.0.2",
  12. "react-router-redux": "4.0.8",
  13. "redux": "3.6.0",
  14. "redux-saga": "0.14.3",
  15. "reselect": "2.5.4",
  16. "style-loader": "0.13.2",
  17. "stylus-loader": "3.0.1",
  18. "stylus-normalize": "3.0.3"
  19. },
  20. "devDependencies": {
  21. "autoprefixer-stylus": "0.13.0",
  22. "babel-cli": "^6.24.0",
  23. "babel-plugin-syntax-object-rest-spread": "^6.13.0",
  24. "babel-plugin-transform-es2015-spread": "^6.22.0",
  25. "babel-plugin-transform-object-rest-spread": "^6.23.0",
  26. "babel-preset-es2015": "^6.24.0",
  27. "babel-preset-es2016": "^6.22.0",
  28. "babel-preset-latest": "^6.24.0",
  29. "body-parser": "^1.17.1",
  30. "concurrently": "3.4.0",
  31. "jsdoc": "^3.4.3",
  32. "node-babel": "^0.1.2",
  33. "react-scripts": "0.9.5",
  34. "stylus": "0.54.5"
  35. },
  36. "scripts": {
  37. "start": "react-scripts start",
  38. "watch": "concurrently --names \"WEBP,STYL\" --prefix name -c \"bgBlue.bold,bgMagenta.bold\" \"npm run styles:watch\" \"npm run start\"",
  39. "build": "react-scripts build",
  40. "test": "react-scripts test --env=jsdom",
  41. "styles": "stylus -u autoprefixer-stylus ./src/css/style.styl -o ./src/css/style.css",
  42. "styles:watch": "stylus -u autoprefixer-stylus -w ./src/css/style.styl -o ./src/css/style.css",
  43. "eject": "react-scripts eject",
  44. "doc": "jsdoc -d code_docu -r -R README.md src/"
  45. }
  46. }