package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233
  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 --exec \"npm run compile --silent\"",
  12. "serverwatch": "nodemon --watch src --watch test --exec \"npm run compile --silent && node build/server.js\"",
  13. "testwatch": "nodemon --watch src --watch test --exec \"npm run compile --silent && npm test\""
  14. },
  15. "private": true,
  16. "dependencies": {
  17. "babel-cli": "^6.6.5",
  18. "babel-core": "^6.7.7",
  19. "babel-loader": "^6.2.4",
  20. "babel-preset-es2015": "^6.6.0",
  21. "babel-preset-react": "^6.5.0",
  22. "immutable": "^3.8.1",
  23. "react": "^15.0.1",
  24. "react-dom": "^15.0.1",
  25. "webpack": "^1.13.0"
  26. },
  27. "devDependencies": {
  28. "blue-tape": "^0.2.0",
  29. "nodemon": "^1.9.1",
  30. "tape": "^4.5.1"
  31. }
  32. }