-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
89 lines (89 loc) · 2.88 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
{
"name": "syt_website",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepare": "husky install",
"test": "vitest run",
"test:e2e": "playwright test",
"prettier:format": "prettier --write --ignore-path .gitignore .",
"prettier:check": "prettier --check --ignore-path .gitignore .",
"validate": "concurrently --kill-others-on-fail -g -p \"[{name}]\" -n \"prettier,lint,build\" \"npm:prettier:check\" \"npm:lint\" \"npm:build\"",
"validate:bun": "concurrently --kill-others-on-fail -g -p \"[{name}]\" -n \"prettier,lint,build\" \"bun:prettier:check\" \"bun:lint\" \"bun:build\"",
"knip": "knip"
},
"dependencies": {
"@emailjs/browser": "^3.11.0",
"@headlessui/react": "^2.1.2",
"@hookform/resolvers": "^3.9.0",
"@hookstate/core": "^4.0.1",
"@tanstack/react-query": "^5.22.2",
"@tanstack/react-query-devtools": "^5.24.0",
"@tanstack/react-table": "^8.17.3",
"axios": "^1.6.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^2.30.0",
"html-react-parser": "^5.0.6",
"lucide-react": "^0.395.0",
"million": "^3.0.2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-fast-marquee": "^1.6.2",
"react-helmet-async": "^2.0.5",
"react-hook-form": "^7.52.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"react-lazy-load-image-component": "^1.6.0",
"react-photo-album": "^2.3.0",
"react-router-dom": "^6.11.2",
"react-share": "^5.1.0",
"react-simple-wysiwyg": "^2.2.5",
"recharts": "^2.12.7",
"tailwind-merge": "^2.3.0",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss-animate": "^1.0.7",
"yet-another-react-lightbox": "^3.15.6",
"yup": "^1.4.0"
},
"devDependencies": {
"@playwright/test": "^1.44.1",
"@testing-library/react": "^16.0.0",
"@tailwindcss/typography": "^0.5.13",
"@types/node": "^20.14.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"eslint": "^8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"jsdom": "^24.1.1",
"knip": "^4.6.0",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.0.0",
"vitest": "^1.6.0"
},
"lint-staged": {
"**/*.{js,jsx}": [
"npm run lint",
"prettier --write"
]
}
}