-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.08 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.08 KB
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
94
95
96
97
98
99
100
101
102
{
"name": "WeBuddhist",
"private": true,
"version": "2025.10.22.0616",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"format": "prettier --write .",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"mac:coverage": "vitest run --coverage && open coverage/index.html",
"release:sprint": "node scripts/release-sprint.js --type sprint",
"release:hotfix": "node scripts/release-sprint.js --type hotfix",
"release:major": "node scripts/release-sprint.js --type release",
"release:dry-run": "node scripts/release-sprint.js --dry-run --type sprint",
"prepare": "husky install"
},
"lint-staged": {
"*.{json,md,html}": [
"npx prettier --write"
],
"*.{css}": [
"npx prettier --write"
],
"*.{jsx,js,ts,tsx}": [
"npx prettier --write"
]
},
"dependencies": {
"@auth0/auth0-react": "^2.2.4",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/vite": "^4.1.17",
"@tolgee/react": "^6.0.1",
"@userback/widget": "^0.3.11",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"crypto-js": "^4.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.3.8",
"react-easy-crop": "^5.4.2",
"react-helmet-async": "^2.0.5",
"react-icons": "^5.5.0",
"react-intersection-observer": "^9.16.0",
"react-markdown": "^10.1.0",
"react-query": "^3.39.3",
"react-resizable-panels": "^3.0.6",
"react-router-dom": "^6.28.0",
"react-youtube": "^10.1.0",
"rehype-raw": "^7.0.0",
"slate": "^0.114.0",
"slate-history": "^0.113.1",
"slate-react": "^0.114.2",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.17",
"use-debounce": "^10.0.4",
"uuid": "^13.0.0",
"vaul": "^1.1.2",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^24.10.1",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-istanbul": "^2.1.5",
"@vitest/coverage-v8": "^2.1.5",
"c8": "^10.1.2",
"eslint": "^9.13.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.11.0",
"husky": "^8.0.0",
"jsdom": "^25.0.1",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"sass-embedded": "^1.81.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^7.2.6",
"vitest": "^2.1.5"
}
}