UNPKG

nesquirk

Version:

Ties Nes + minimongo together for gloryful reactive apps.

43 lines (42 loc) 1.17 kB
{ "name": "todo", "version": "1.0.0", "description": "A simple TODO list app", "main": "server.js", "scripts": { "start": "npm run build && node server.js", "build": "run-p build:*", "build:client": "browserify ui/main.js -o public/bundle.js -t [ babelify ]", "watch": "run-p watch:*", "watch:client": "watchify ui/main.js -o public/bundle.js -t [ babelify ] -v", "watch:serve": "nodemon server.js --ignore ui", "test": "echo \"Error: no test specified\" && exit 1" }, "author": "Alan Shaw", "license": "MIT", "dependencies": { "hapi": "^16.5.0", "inert": "^4.2.1", "lodash": "^4.17.4", "mongojs": "^2.4.0", "nesquirk": "^4.0.0", "prop-types": "^15.5.10", "react": "^15.6.1", "react-dom": "^15.6.1", "react-router-dom": "^4.1.2" }, "devDependencies": { "babel-eslint": "^7.2.3", "babel-preset-env": "^1.6.0", "babel-preset-react": "^6.24.1", "babel-preset-stage-2": "^6.24.1", "babelify": "^7.3.0", "nodemon": "^1.11.0", "npm-run-all": "^4.0.2", "standard": "^10.0.2", "watchify": "^3.9.0" }, "standard": { "parser": "babel-eslint" } }