-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 3 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
{
"name": "the-timeless-tutor",
"author": "thetimelesstutor.com",
"licence": "MIT",
"version": "1.8.0",
"private": false,
"scripts": {
"dev": "vite",
"start": "vite preview",
"build": "vite build",
"dev:host": "vite --host",
"vite:start": "vite",
"vite:build": "vite build",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"rm:all": "rm -rf node_modules .next out dist build",
"re:start": "yarn rm:all && yarn install && yarn dev",
"re:build": "yarn rm:all && yarn install && yarn build",
"re:build-npm": "npm run rm:all && npm install && npm run build"
},
"dependencies": {
"@dicebear/collection": "^8.0.1",
"@dicebear/core": "^8.0.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@faker-js/faker": "^8.1.0",
"@fontsource/poppins": "^5.0.14",
"@headlessui/react": "^1.7.19",
"@heroicons/react": "^2.1.3",
"@iconify/icons-mdi": "^1.2.48",
"@iconify/react": "^4.1.1",
"@mui/icons-material": "^5.15.17",
"@mui/lab": "^5.0.0-alpha.147",
"@mui/material": "^5.14.12",
"@radix-ui/react-toast": "^1.1.5",
"@react-oauth/google": "^0.12.1",
"@tanstack/react-query": "^5.32.1",
"@tanstack/react-query-devtools": "^5.32.1",
"apexcharts": "^3.43.0",
"axios": "^1.6.8",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"date-fns": "^2.30.0",
"ethers": "^6.12.0",
"framer-motion": "^11.1.7",
"history": "^5.3.0",
"lodash": "^4.17.21",
"lucide-react": "^0.376.0",
"numeral": "^2.0.6",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-apexcharts": "^1.4.1",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.13",
"react-google-recaptcha": "^3.1.0",
"react-helmet-async": "^1.3.0",
"react-hook-form": "^7.47.0",
"react-icons": "^4.12.0",
"react-router-dom": "^6.16.0",
"react-slick": "^0.29.0",
"remixicon": "^4.2.0",
"simplebar-react": "^3.2.4",
"slick-carousel": "^1.8.1",
"swr": "^2.2.5",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"yet-another-react-lightbox": "^3.17.5"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.32.1",
"@types/node": "^20.12.7",
"@vitejs/plugin-react-swc": "^3.4.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-perfectionist": "^2.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"postcss": "^8.4.38",
"prettier": "^3.0.3",
"tailwindcss": "^3.4.3",
"vite": "^4.4.11",
"vite-plugin-checker": "^0.6.2"
}
}