package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. "sinon": "2.1.0",
  20. "style-loader": "0.13.2",
  21. "stylus-loader": "3.0.1",
  22. "stylus-normalize": "3.0.3"
  23. },
  24. "devDependencies": {
  25. "autoprefixer-stylus": "0.13.0",
  26. "babel-cli": "6.24.0",
  27. "babel-plugin-transform-object-rest-spread": "^6.23.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 -c jsdoc.json -d code_docu -r -R README.md src/"
  45. }
  46. }