123456789101112131415161718192021222324252627282930313233 |
- {
- "name": "conway",
- "version": "0.1.0",
- "scripts": {
- "test": "echo \"Error: no test specified\" && exit 1",
- "postinstall": "npm run compile",
- "compile-test": "babel test --out-dir test-build",
- "compile-src": "babel src --out-dir build",
- "compile-frontend": "webpack src/main.js build/bundle.js --module-bind 'js=babel-loader'",
- "compile": "npm run compile-src; npm run compile-test; npm run compile-frontend",
- "watch": "nodemon --watch src --watch test --exec \"npm run compile --silent\"",
- "serverwatch": "nodemon --watch src --watch test --exec \"npm run compile --silent && node build/server.js\"",
- "testwatch": "nodemon --watch src --watch test --exec \"npm run compile --silent && npm test\""
- },
- "private": true,
- "dependencies": {
- "babel-cli": "^6.6.5",
- "babel-core": "^6.7.7",
- "babel-loader": "^6.2.4",
- "babel-preset-es2015": "^6.6.0",
- "babel-preset-react": "^6.5.0",
- "immutable": "^3.8.1",
- "react": "^15.0.1",
- "react-dom": "^15.0.1",
- "webpack": "^1.13.0"
- },
- "devDependencies": {
- "blue-tape": "^0.2.0",
- "nodemon": "^1.9.1",
- "tape": "^4.5.1"
- }
- }
|