-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.14 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "enchanter",
"version": "1.0.7",
"description": "A script which allows the live streaming of random pre-processed and chunked vods stored in S3.",
"main": "enchanter.js",
"scripts": {
"test": "./node_modules/.bin/mocha --compilers js:babel-register",
"dev": "nodemon enchanter.js --exec babel-node",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./log,./example,./.babelrc,./readme.md,./.env,./.envsample,./.eslintrc.json,./.gitignore,./package-lock.json,./package.json,./src/streamer.old.js,./src/render.old.js --copy-files"
},
"author": "Jian Ting",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-airbnb": "^2.5.3",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"rimraf": "^2.6.2",
"sinon": "^7.1.1"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.9.6",
"rpc-websockets": "^5.1.1",
"winston": "^3.2.1"
}
}