-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.16 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
{
"name": "smart-web-player",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build-dev": "webpack --mode development",
"build": "webpack --mode production",
"clean": "rm -fr dist",
"lint": "eslint --fix",
"start": "node ./bin/app.js",
"dev": "ts-node ./src/app.ts",
"prepare": "husky install"
},
"devDependencies": {
"@types/video.js": "^7.3.49",
"@types/videojs-contrib-quality-levels": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@types/tizen-tv-webapis": "^2.0.1",
"tizen-tv-webapis": "^2.0.0",
"video.js": "^7.20.3",
"videojs-contrib-eme": "^5.0.1",
"videojs-contrib-quality-levels": "^2.2.0"
}
}