package.json 936 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "github-battle",
  3. "version": "1.0.0",
  4. "description": "http://courses.reactjsprogram.com/courses/reactjsfundamentals",
  5. "main": "index.js",
  6. "scripts": {
  7. "start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
  8. "start:dev": "webpack-dev-server --inline --content-base . --history-api-fallback",
  9. "start:prod": "webpack -p",
  10. "babel": "babel app -d dist"
  11. },
  12. "author": "Tyler McGinnis <tylermcginnis33@gmail.com> (http://ylermcginnis.com)",
  13. "license": "ISC",
  14. "dependencies": {
  15. "if-env": "^1.0.0",
  16. "react": "^0.14.7",
  17. "react-dom": "^0.14.7",
  18. "react-router": "^2.0.1"
  19. },
  20. "devDependencies": {
  21. "babel-cli": "^6.6.5",
  22. "babel-core": "^6.7.4",
  23. "babel-loader": "^6.2.4",
  24. "babel-preset-es2015": "^6.6.0",
  25. "babel-preset-react": "^6.5.0",
  26. "html-webpack-plugin": "^2.14.0",
  27. "webpack": "^1.12.14",
  28. "webpack-dev-server": "^1.14.1"
  29. }
  30. }