-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
116 lines (116 loc) · 3.54 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "tv.kurr.dev",
"version": "1.0.0",
"description": "A movie web app built with React, Redux & Web Scraping",
"repository": {
"type": "git",
"url": "https://github.com/kurrx/tv.kurr.dev.git"
},
"license": "MIT",
"author": {
"name": "Kurbanali Ruslan",
"email": "[email protected]",
"url": "https://github.com/kurrx"
},
"type": "module",
"scripts": {
"build": "vite build",
"commit": "git-cz",
"deploy": "npm run build && firebase deploy",
"format": "prettier . --write --ignore-path .gitignore && git update-index --again",
"lint": "eslint . --ext .ts,.tsx --fix --ignore-path .gitignore",
"prepare": "husky install",
"serve": "npm run build && vite preview --port 3000",
"start": "vite --host",
"typecheck": "tsc --noEmit"
},
"lint-staged": {
"*.{css,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"eslint",
"prettier --write"
],
"package.json": "npx sort-package-json"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"dependencies": {
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tooltip": "^1.0.7",
"@reduxjs/toolkit": "^2.1.0",
"axios": "^1.6.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^0.2.1",
"dexie": "^3.2.5",
"firebase": "^10.8.0",
"framer-motion": "^11.0.3",
"random-gradient": "^0.0.2",
"react": "^18.2.0",
"react-animate-height": "^3.2.3",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-hotkeys-hook": "^4.4.4",
"react-player": "^2.14.1",
"react-redux": "^9.1.0",
"react-router-dom": "^6.21.3",
"screenfull": "^6.0.2",
"set-cookie-parser": "^2.6.0",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^2.10.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@commitlint/cz-commitlint": "^18.6.0",
"@types/node": "^20.11.13",
"@types/random-gradient": "^0.0.2",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/set-cookie-parser": "^2.4.7",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-legacy": "^5.3.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"commitizen": "^4.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"firebase-tools": "^13.1.0",
"husky": "^9.0.7",
"lint-staged": "^15.2.0",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"sort-package-json": "^2.7.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-svgr": "^4.2.0"
}
}