-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1021 Bytes
/
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
{
"name": "offline-video-player",
"version": "1.3.1",
"description": "A simple offline video player",
"main": "src/index.js",
"scripts": {
"start": "node ./src/index.js --open",
"dev": "nodemon ./src/index.js",
"build-cache": "node ./src/scripts/build-cache.js",
"build-tracking": "node ./src/scripts/build-tracking.js",
"reset": "node ./src/scripts/reset.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Alain D'Ettorre <alain.det@gmail.com>",
"license": "MIT",
"dependencies": {
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"get-video-duration": "^3.0.2",
"glob": "^7.1.6",
"language-tags": "^1.0.5",
"multer": "^1.4.2",
"natural-orderby": "^2.0.3",
"normalize-path": "^3.0.0",
"open": "^7.3.1",
"srt-to-vtt": "^1.1.3",
"yargs": "^16.2.0"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}