package.json 959 B

12345678910111213141516171819202122232425262728293031
  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. "axios": "^0.9.1",
  16. "if-env": "^1.0.0",
  17. "react": "^0.14.7",
  18. "react-dom": "^0.14.7",
  19. "react-router": "^2.0.1"
  20. },
  21. "devDependencies": {
  22. "babel-cli": "^6.6.5",
  23. "babel-core": "^6.7.4",
  24. "babel-loader": "^6.2.4",
  25. "babel-preset-es2015": "^6.6.0",
  26. "babel-preset-react": "^6.5.0",
  27. "html-webpack-plugin": "^2.14.0",
  28. "webpack": "^1.12.14",
  29. "webpack-dev-server": "^1.14.1"
  30. }
  31. }