-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
79 lines (79 loc) · 2.45 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
{
"name": "youtube-clone",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --ext ts,tsx src/",
"lint:fix": "eslint --fix --ext ts,tsx src/",
"prettier": "prettier --check \"src/**/(*.tsx|*.ts|*.css|*.scss)\"",
"prettier:fix": "prettier --write \"src/**/(*.tsx|*.ts|*.css|*.scss)\""
},
"dependencies": {
"@headlessui/react": "^1.7.13",
"@hookform/resolvers": "^3.0.0",
"@tailwindcss/line-clamp": "^0.4.2",
"@types/body-scroll-lock": "^3.1.0",
"@types/react-speech-recognition": "^3.9.1",
"apexcharts": "^3.37.3",
"axios": "^1.3.4",
"babel-polyfill": "^6.26.0",
"body-scroll-lock": "^4.0.0-beta.0",
"classnames": "^2.3.2",
"cloudinary": "^1.35.0",
"date-fns": "^2.30.0",
"emoji-picker-react": "^4.4.8",
"html-react-parser": "^3.0.15",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-apexcharts": "^1.4.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-helmet-async": "^1.3.0",
"react-hook-form": "^7.43.5",
"react-icons": "^4.8.0",
"react-query": "^3.39.3",
"react-quill": "^2.0.0",
"react-router-dom": "^6.9.0",
"react-share": "^4.4.1",
"react-speech-recognition": "^3.10.0",
"react-toastify": "^9.1.2",
"sha1": "^1.1.1",
"swiper": "^9.1.1",
"usehooks-ts": "^2.9.1",
"webfontloader": "^1.6.28",
"yup": "^1.0.2"
},
"devDependencies": {
"@svgr/webpack": "^7.0.0",
"@types/lodash": "^4.14.192",
"@types/node": "^18.15.1",
"@types/react": "^18.0.27",
"@types/react-beforeunload": "^2.1.1",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.10",
"@types/sha1": "^1.1.3",
"@types/webfontloader": "^1.6.35",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.4",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.3",
"vite": "^4.1.0"
}
}