-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.42 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
{
"name": "shopee",
"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)\"",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@floating-ui/react": "^0.19.2",
"@floating-ui/react-dom": "^1.3.0",
"@hookform/resolvers": "^2.9.11",
"@tailwindcss/line-clamp": "^0.4.2",
"@tanstack/react-query": "^4.24.10",
"@tanstack/react-query-devtools": "^4.24.10",
"@types/dompurify": "^3.0.0",
"@types/lodash": "^4.14.191",
"axios": "^1.3.4",
"classnames": "^2.3.2",
"dompurify": "^3.0.1",
"framer-motion": "^10.0.0",
"i18next": "^23.2.1",
"immer": "^10.0.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"node-sass": "^8.0.0",
"react": "^18.2.0",
"react-countdown": "^2.3.5",
"react-dom": "^18.2.0",
"react-hook-form": "^7.43.2",
"react-i18next": "^13.0.0",
"react-icons": "^4.7.1",
"react-responsive": "^9.0.2",
"react-router-dom": "^6.8.1",
"react-spinners": "^0.13.8",
"react-toastify": "^9.1.1",
"react-use-draggable-scroll": "^0.4.7",
"slick-carousel": "^1.8.1",
"socket.io-client": "^4.6.2",
"swiper": "^9.0.5",
"tailwind-scrollbar": "^3.0.4",
"usehooks-ts": "^2.9.1",
"yup": "^1.0.0"
},
"devDependencies": {
"@types/jsdom": "^21.1.1",
"@types/node": "^18.14.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.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",
"jsdom": "^22.1.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.3",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.58.3",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vitest": "^0.33.0"
}
}