package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233
  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. "stylus-normalize": "3.0.3"
  17. },
  18. "devDependencies": {
  19. "autoprefixer-stylus": "0.13.0",
  20. "concurrently": "3.4.0",
  21. "stylus": "0.54.5",
  22. "react-scripts": "0.9.5"
  23. },
  24. "scripts": {
  25. "start": "react-scripts start",
  26. "watch": "concurrently --names 'WEBP,STYL' --prefix name -c 'bgBlue.bold,bgMagenta.bold' 'npm run styles:watch' 'npm run start'",
  27. "build": "react-scripts build",
  28. "test": "react-scripts test --env=jsdom",
  29. "styles": "stylus -u autoprefixer-stylus ./src/css/style.styl -o ./src/css/style.css",
  30. "styles:watch": "stylus -u autoprefixer-stylus -w ./src/css/style.styl -o ./src/css/style.css",
  31. "eject": "react-scripts eject"
  32. }
  33. }