combine.fm/package.json

61 lines
1.4 KiB
JSON
Raw Normal View History

2014-11-30 12:21:03 +00:00
{
2014-12-02 18:34:31 +00:00
"name": "match.audio",
2014-11-30 12:21:03 +00:00
"version": "0.0.0",
"private": true,
"scripts": {
2015-06-03 21:45:54 -07:00
"start": "babel-node app.js",
"test": "mocha --require co-mocha --compilers js:babel/register test/**/*.js --timeout=10000",
"build": "browserify -t babelify ./views/app.jsx > ./public/javascript/bundle.js",
"clean": "rm -f ./public/javascript/bundle.js"
2014-11-30 12:21:03 +00:00
},
"engines": {
2015-06-03 21:45:54 -07:00
"iojs": "2.2.1"
2014-11-30 12:21:03 +00:00
},
"browserify": {
"transform": [
[
"reactify",
{
"harmony": true
}
]
]
},
2014-11-30 12:21:03 +00:00
"dependencies": {
2015-06-03 21:45:54 -07:00
"babel": "^5.2.17",
"babelify": "^6.0.2",
"bluebird": "^2.9.25",
"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",
2015-06-03 21:45:54 -07:00
"playmusic": "^2.0.0",
2014-12-01 11:53:25 +00:00
"rdio": "^1.5.2",
2015-06-03 21:45:54 -07:00
"react": "^0.13.3",
"react-google-analytics": "^0.2.0",
2015-06-03 21:45:54 -07:00
"react-router": "^0.13.3",
"reactify": "^1.1.1",
2014-12-04 15:45:52 +00:00
"spotify": "^0.3.0",
2015-06-03 21:45:54 -07:00
"superagent": "^1.2.0",
"superagent-bluebird-promise": "^2.0.2"
2014-12-01 12:41:26 +00:00
},
"devDependencies": {
2015-06-03 21:45:54 -07:00
"co-mocha": "^1.1.0",
"eslint": "^0.22.1",
"eslint-plugin-react": "^2.5.0",
"mocha": "^2.1.0",
"nodemon": "^1.3.7",
"parallelshell": "^1.1.1",
"should": "^6.0.3"
2014-11-30 12:21:03 +00:00
}
}