package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. "babel-cli": "^6.24.0",
  24. "babel-plugin-syntax-object-rest-spread": "^6.13.0",
  25. "babel-plugin-transform-es2015-spread": "^6.22.0",
  26. "babel-plugin-transform-object-rest-spread": "^6.23.0",
  27. "babel-preset-es2015": "^6.24.0",
  28. "babel-preset-es2016": "^6.22.0",
  29. "babel-preset-latest": "^6.24.0",
  30. "body-parser": "^1.17.1",
  31. "concurrently": "3.4.0",
  32. "jsdoc": "^3.4.3",
  33. "node-babel": "^0.1.2",
  34. "react-scripts": "0.9.5",
  35. "stylus": "0.54.5"
  36. },
  37. "scripts": {
  38. "start": "react-scripts start",
  39. "watch": "concurrently --names \"WEBP,STYL\" --prefix name -c \"bgBlue.bold,bgMagenta.bold\" \"npm run styles:watch\" \"npm run start\"",
  40. "build": "react-scripts build",
  41. "test": "react-scripts test --env=jsdom",
  42. "styles": "stylus -u autoprefixer-stylus ./src/css/style.styl -o ./src/css/style.css",
  43. "styles:watch": "stylus -u autoprefixer-stylus -w ./src/css/style.styl -o ./src/css/style.css",
  44. "eject": "react-scripts eject",
  45. "doc": "jsdoc -d code_docu -r -R README.md src/"
  46. }
  47. }