combine.fm/package.json
2015-06-14 19:22:33 +01:00

64 lines
1.7 KiB
JSON

{
"name": "match.audio",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node -r 'babel/register' app.js",
"test": "mocha --require co-mocha --compilers js:babel/register test/**/*.js --timeout=10000",
"build": "browserify ./views/app.jsx > ./public/javascript/bundle.js",
"watch": "parallelshell \"npm run watch-js\" \"npm run watch-server\"",
"watch-server": "nodemon -x \"node -r 'babel/register'\" -e js,jsx -i public/ app.js",
"watch-js": "browserify ./views/app.jsx | uglifyjs -cm 2>/dev/null > ./public/scripts/bundle.js",
"clean": "rm -f ./public/scripts/bundle.js"
},
"engines": {
"iojs": "2.3.0"
},
"browserify": {
"transform": [
[
"reactify",
{
"harmony": true
}
]
]
},
"dependencies": {
"babel": "^5.5.8",
"babelify": "^6.0.2",
"bluebird": "^2.9.30",
"browserify": "^10.1.3",
"co": "^4.5.4",
"debug": "^2.1.1",
"koa": "^0.21.0",
"koa-bodyparser": "^2.0.0",
"koa-compress": "^1.0.8",
"koa-favicon": "^1.2.0",
"koa-logger": "^1.2.2",
"koa-route": "^2.4.0",
"koa-static": "^1.4.9",
"moment": "^2.10.3",
"mongodb-promisified": "^1.0.2",
"node-uuid": "^1.4.2",
"playmusic": "^2.0.0",
"rdio": "^1.5.2",
"react": "^0.13.3",
"react-google-analytics": "^0.2.0",
"react-router": "^0.13.3",
"reactify": "^1.1.1",
"spotify": "^0.3.0",
"superagent": "^1.2.0",
"superagent-bluebird-promise": "^2.0.2",
"uglifyjs": "^2.4.10"
},
"devDependencies": {
"co-mocha": "^1.1.0",
"eslint": "^0.22.1",
"eslint-plugin-react": "^2.5.1",
"mocha": "^2.1.0",
"nodemon": "^1.3.7",
"parallelshell": "^1.1.1",
"should": "^6.0.3"
}
}