-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1 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
35
{
"name": "mediaserverjs",
"version": "0.0.1",
"description": "serve static files",
"main": "index.js",
"scripts": {
"start:development": "NODE_ENV=development babel-node --presets env ./index.js",
"start:production": "npm run build && NODE_ENV=production node ./dist/index.js",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./package.json,./package-lock.json --copy-files",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"server",
"mediaserver",
"streaming",
"stream"
],
"author": "Guillermo Puente <[email protected]>",
"license": "ISC",
"dependencies": {
"config": "^1.27.0",
"express": "^4.16.2",
"log4js": "^2.3.11",
"mediaserver": "^0.1.0",
"nodemon": "^1.12.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"rimraf": "^2.6.2"
}
}