{ "name": "production-todomvc", "version": "0.0.0", "description": "production-quality TodoMVC example", "main": "index.js", "scripts": { "postinstall": "lnfs app node_modules/app", "lint": "snazzy", "format": "snazzy --format", "test": "(npm run spec & npm run feature)", "spec": "node spec", "feature": "node feature", "dev:client": "budo client --dir assets --serve bundle.js --live -- -d", "dev:server": "nodemon server", "prod:client": "browserify client -o assets/bundle.js -g uglifyify", "prod:server": "node server", "dev": "npm-run-all -p dev:*", "prod": "npm-run-all -s prod:*" }, "browserify": { "transform": [ "babelify", "sheetify/transform" ] }, "repository": { "type": "git", "url": "git+https://github.com/ahdinosaur/production-todomvc.git" }, "keywords": [ "todomvc", "example", "react", "redux", "frp", "functional", "reactive", "immutable", "feathers", "ddd", "tcomb" ], "author": "Mikey (http://dinosaur.is)", "license": "ISC", "bugs": { "url": "https://github.com/ahdinosaur/production-todomvc/issues" }, "homepage": "https://github.com/ahdinosaur/production-todomvc#readme", "devDependencies": { "budo": "^6.1.0", "cuke-tap": "^1.0.2", "jsdom": "^7.1.0", "nodemon": "^1.8.1", "tape": "^4.2.2" }, "dependencies": { "babel-core": "^6.2.1", "babel-plugin-transform-object-rest-spread": "^6.1.18", "babel-preset-es2015": "^6.1.18", "babel-preset-react": "^6.1.18", "babelify": "^7.2.0", "feathers": "^1.2.0", "lnfs-cli": "^1.0.1", "npm-run-all": "^1.3.2", "ramda": "^0.18.0", "sheetify": "^3.1.0", "uglifyify": "^3.0.1" } }