forked from AntonioNarcilio/video-player-hls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.63 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "hls-player",
"version": "1.0.0",
"author": {
"name": "Antonio Narcilio"
},
"license": "unlicensed",
"private": "true",
"scripts": {
"setup": "yarn install",
"dev": "next",
"build": "next build",
"start": "next start",
"next-lint": "next lint",
"lint": "eslint ./",
"lint:fix": "yarn lint --fix",
"prepare": "husky install",
"lint-staged": "lint-staged"
},
"lint-staged": {
".tsx": [
"yarn lint:fix"
],
".ts": [
"yarn lint:fix"
],
".js": [
"yarn lint:fix"
]
},
"dependencies": {
"dashjs": "^4.0.0-npm",
"dotenv": "^10.0.0",
"hls.js": "^1.0.9",
"husky": "^7.0.2",
"lottie-web": "^5.7.13",
"next": "^11.1.1",
"next-seo": "^4.28.1",
"plyr": "^3.6.8",
"plyr-react": "^3.1.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-hot-toast": "^2.1.0",
"react-loading": "^2.0.3",
"styled-components": "^5.0.0",
"webpack": "^5.47.1"
},
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"@types/node": "^16.4.10",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.11",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.29.0",
"babel-plugin-styled-components": "^1.13.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^11.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"lint-staged": "^11.1.2",
"typescript": "^4.3.5"
}
}