2016-04-10 03:13:46 +00:00
{
"name" : "caspar-sup" ,
"version" : "1.0.0" ,
2016-04-10 08:37:05 +00:00
"description" : "CasparCG superimposed graphics project" ,
2016-04-10 03:13:46 +00:00
"main" : "index.js" ,
"scripts" : {
2020-04-05 05:12:55 +00:00
"build:styl" : "stylus -m app/styl/main.styl --out public && stylus -m app/styl/client.styl --out public && stylus -m app/styl/status.styl --out public" ,
"watch:styl" : "stylus -w -m app/styl/main.styl app/styl/client.styl app/styl/status.styl --out public" ,
"build:js" : "asbundle app/main/index.js ../../../public/main.js && asbundle app/client/index.js public/client.js && asbundle app/status/index.js ../../public/status.js" ,
"watch:js" : "nodemon --watch app --exec \"npm run build:js\"" ,
"watch:server" : "nodemon --watch api index.js | bunyan -o short" ,
2017-12-03 11:34:43 +00:00
"start" : "node index.js" ,
2018-06-26 19:19:38 +00:00
"start:win" : "node index.js | bunyan" ,
2020-04-05 05:12:55 +00:00
"dev" : "run-p watch:styl watch:js watch:server" ,
2018-06-26 18:35:12 +00:00
"prod-run" : "npm run build:js && npm run build-client:js && npm run build-status:js && npm run build:styl && npm run build-client:styl && npm run build-status:styl && npm start" ,
2020-04-05 05:12:55 +00:00
"build" : "npm run build:js && npm run build:styl" ,
"docker" : "docker run -it --rm --name my-running-script -p 3000:3000 -v \"%cd%\":/usr/src/app -w /usr/src/app node" ,
"docker:install" : "npm run docker -- npm install" ,
"docker:dev" : "npm run docker -- npm run dev"
2016-04-10 03:13:46 +00:00
} ,
"repository" : {
"type" : "git" ,
"url" : "git+https://github.com/nfp-projects/caspar-sup.git"
} ,
"keywords" : [
"Casparcg" ,
"superimposed" ,
"graphics"
] ,
"author" : "Jonatan Nilsson" ,
"license" : "WTFPL" ,
"bugs" : {
"url" : "https://github.com/nfp-projects/caspar-sup/issues"
} ,
2016-04-10 08:37:05 +00:00
"homepage" : "https://github.com/nfp-projects/caspar-sup#readme" ,
"dependencies" : {
2017-12-03 11:34:43 +00:00
"babel-plugin-transform-es2015-modules-commonjs" : "^6.26.0" ,
"babel-register" : "^6.26.0" ,
2018-07-15 04:00:42 +00:00
"bookshelf" : "^0.11.1" ,
2017-12-03 11:34:43 +00:00
"bunyan" : "^1.8.12" ,
2020-04-05 05:12:55 +00:00
"casparcg-connection" : "4.9.0" ,
2018-06-26 18:35:12 +00:00
"ip" : "^1.1.5" ,
2018-07-15 04:00:42 +00:00
"knex" : "^0.12.9" ,
2017-12-03 11:34:43 +00:00
"koa" : "^2.4.1" ,
"koa-better-serve" : "^2.0.7" ,
"koa-socket" : "^4.4.0" ,
"nconf" : "^0.9.1" ,
2020-04-05 05:12:55 +00:00
"socket.io" : "^2.3.0" ,
"sqlite3" : "^4.1.1" ,
"tslib" : "^1.11.1"
2016-04-10 08:37:05 +00:00
} ,
"devDependencies" : {
2020-04-05 05:12:55 +00:00
"asbundle" : "^2.6.0" ,
2018-07-15 03:19:58 +00:00
"dragula" : "^3.7.2" ,
"mithril" : "^1.1.5" ,
2017-12-03 11:34:43 +00:00
"npm-run-all" : "^4.1.2" ,
2020-04-05 05:12:55 +00:00
"nodemon" : "^2.0.2" ,
"run-p" : "0.0.0" ,
"stylus" : "^0.54.7"
2016-04-10 08:37:05 +00:00
}
2016-04-10 03:13:46 +00:00
}