package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. "body-parser": "^1.17.1",
  23. "concurrently": "3.4.0",
  24. "jsdoc": "^3.4.3",
  25. "react-scripts": "0.9.5",
  26. "stylus": "0.54.5"
  27. },
  28. "scripts": {
  29. "start": "react-scripts start",
  30. "watch": "concurrently --names \"WEBP,STYL\" --prefix name -c \"bgBlue.bold,bgMagenta.bold\" \"npm run styles:watch\" \"npm run start\"",
  31. "build": "react-scripts build",
  32. "test": "react-scripts test --env=jsdom",
  33. "styles": "stylus -u autoprefixer-stylus ./src/css/style.styl -o ./src/css/style.css",
  34. "styles:watch": "stylus -u autoprefixer-stylus -w ./src/css/style.styl -o ./src/css/style.css",
  35. "eject": "react-scripts eject",
  36. "doc": "jsdoc -d code_docu -r -R README.md src/"
  37. }
  38. }