-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.31 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.31 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
{
"name": "@widget-js/react-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache . --fix",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@icons-pack/react-simple-icons": "^13.11.2",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-popover": "^1.1.15",
"@supabase/auth-js": "^2.86.0",
"@supabase/supabase-js": "^2.84.0",
"@tailwindcss/vite": "^4.2.0",
"@uiw/react-color": "^2.9.5",
"@widget-js/core": "latest",
"@widget-js/react": "latest",
"@widget-js/web-api": "24.1.1-beta.70",
"axios": "^1.13.5",
"baseline-browser-mapping": "^2.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"consola": "^3.4.2",
"driver.js": "^1.4.0",
"framer-motion": "^12.34.3",
"i18next": "^25.8.13",
"i18next-browser-languagedetector": "^8.2.1",
"lucide-react": "^0.575.0",
"next-themes": "^0.4.6",
"qrcode.react": "^4.2.0",
"radix-ui": "^1.4.3",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-dropzone": "^15.0.0",
"react-i18next": "^16.5.4",
"react-medium-image-zoom": "^5.4.1",
"react-router-dom": "^7.1.5",
"react-use": "^17.6.0",
"semver": "^7.7.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^7.6.1",
"@eslint-react/eslint-plugin": "^2.13.0",
"@types/node": "^24.10.13",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/semver": "^7.7.1",
"@vitejs/plugin-react": "^5.1.1",
"@widget-js/vite-plugin-widget": "24.1.1-beta.72",
"eslint": "^10.0.2",
"eslint-plugin-format": "^2.0.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint-plugin-unicorn": "^63.0.0",
"globals": "^16.5.0",
"lint-staged": "^16.3.0",
"shadcn": "^3.8.5",
"simple-git-hooks": "^2.13.1",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.3",
"vite": "^7.3.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}