package.json 967 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "conway",
  3. "version": "0.1.0",
  4. "scripts": {
  5. "test": "echo \"Error: no test specified\" && exit 1",
  6. "postinstall": "npm run compile",
  7. "compile-test": "babel test --out-dir test-build",
  8. "compile-src": "babel src --out-dir build",
  9. "compile-frontend": "webpack src/main.js build/bundle.js --module-bind 'js=babel-loader'",
  10. "compile": "npm run compile-src; npm run compile-test; npm run compile-frontend",
  11. "watch": "nodemon --watch src --watch test --watch styles -e js,css,html --exec \"npm run compile --silent\""
  12. },
  13. "private": true,
  14. "dependencies": {
  15. "babel-cli": "^6.6.5",
  16. "babel-core": "^6.7.7",
  17. "babel-loader": "^6.2.4",
  18. "babel-preset-es2015": "^6.6.0",
  19. "babel-preset-react": "^6.5.0",
  20. "immutable": "^3.8.1",
  21. "react": "^15.0.1",
  22. "react-dom": "^15.0.1",
  23. "webpack": "^1.13.0"
  24. },
  25. "devDependencies": {
  26. "blue-tape": "^0.2.0",
  27. "nodemon": "^1.9.1",
  28. "tape": "^4.5.1"
  29. }
  30. }