-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "tv-stream",
"version": "1.0.0",
"description": "stream shows from your dvr",
"private": true,
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@tsconfig/vite-react": "^1.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^1.3.0",
"eslint": "^8.10.0",
"eslint-config-dasprid": "^0.1.8",
"eslint-plugin-react": "^7.29.4",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"rollup-plugin-visualizer": "^5.6.0",
"typescript": "~5.2",
"vite": "^5.0.1",
"vite-tsconfig-paths": "^4.0.1"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"dependencies": {
"@auth0/auth0-react": "^1.12.0",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.12",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-query": "^3.39.2",
"react-router-dom": "^6.2.2",
"video.js": "^8.9.0",
"vite-plugin-pwa": "^0.17.4",
"zod": "^3.19.1"
}
}