package.json 1.2 KB

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