package.json 1.4 KB

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