-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
40 lines (40 loc) · 969 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
37
38
39
40
{
"name": "next-fe-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install"
},
"dependencies": {
"axios": "^0.21.1",
"hls.js": "^1.0.1",
"mux.js": "^5.11.0",
"next": "10.1.3",
"postcss-import": "^13.0.0",
"postcss-preset-env": "^6.7.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"sass": "^1.32.8",
"videojs-contrib-hls": "^5.15.0",
"videojs-contrib-quality-levels": "^2.1.0",
"videojs-hls-quality-selector": "^1.1.4"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"autoprefixer": "^10.2.5",
"husky": ">=6",
"lint-staged": ">=10",
"postcss": "^8.2.10",
"prettier": "^2.2.1",
"tailwindcss": "^2.1.1",
"typescript": "^4.2.4",
"video.js": "^7.11.8"
},
"lint-staged": {
"*.{js,css,md,ts,tsx}": "prettier --write"
}
}