-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.35 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "media-server",
"version": "1.0.0",
"description": "A simple server to stream media content",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"fix-lint": "prettier --write \"./src/**/*.js\" && eslint --fix \"./src/**/*.js\""
},
"bin": "server.js",
"pkg": {
"assets": [
"./src/**",
"./config.js"
],
"targets": [
"node14-linux-x64",
"node14-win-x64",
"node14-macos-x64",
"node13-win-x86",
"node13-linux-x86"
]
},
"keywords": [
"streaming",
"local",
"server"
],
"author": "manorit and parth",
"license": "ISC",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"http-status-codes": "^2.1.4",
"mongodb": "^3.6.3",
"morgan-body": "^2.5.2",
"mustache": "^4.0.1",
"mustache-express": "^1.3.0",
"open": "^7.3.0",
"serve-favicon": "^2.5.0",
"serve-index": "^1.9.1",
"session-file-store": "^1.5.0",
"yargs": "^16.1.1"
},
"devDependencies": {
"eslint": "^7.13.0",
"eslint-config-google": "^0.14.0",
"prettier": "^2.1.2"
}
}