-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
74 lines (74 loc) · 2.49 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
{
"name": "web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"npm:start:vite\" \"npm:start:docusaurus\"",
"start:vite": "vite",
"start:docusaurus": "cd docusaurus && yarn start",
"build": "vite build && cd docusaurus && npm install && npm run build && mkdir -p ../dist/docs && cp -R build/* ../dist/docs",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint --fix --ext .js,.jsx .",
"check-lint": "npm run lint-staged",
"lint-staged": "lint-staged",
"format-check": "prettier --check .",
"format": "prettier --write .",
"preview": "vite preview --port 5173",
"prepare": "husky install"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.2",
"@tanstack/react-query": "^5.59.20",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"concurrently": "^9.0.1",
"embla-carousel-react": "^8.1.6",
"framer-motion": "^11.11.17",
"js-cookie": "^3.0.5",
"lucide-react": "^0.407.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.24.0",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"yarn": "^1.22.22"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.60.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"husky": "^8.0.0",
"lint-staged": "^15.2.10",
"postcss": "^8.4.38",
"prettier": "3.3.3",
"tailwindcss": "^3.4.4",
"vite": "^5.3.1"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0",
"prettier -w"
],
"src/**/*.{json,css,scss,md}": [
"prettier -w"
]
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}