forked from FRC2713/QRScout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.1 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
{
"name": "qrscout",
"private": true,
"version": "2.0.0",
"type": "module",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"dev": "vite",
"build": "tsc && npm run schema && vite build ",
"preview": "vite preview",
"schema": "npx tsx src/scripts/generateJsonSchema.ts > src/assets/schema.json && npx tsx src/scripts/generateJsonSchema.ts > public/schema.json"
},
"dependencies": {
"@headlessui/react": "^1.7.19",
"@heroicons/react": "^2.2.0",
"@monaco-editor/react": "^4.6.0",
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-aspect-ratio": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-collapsible": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.3",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-select": "^2.1.3",
"@radix-ui/react-slider": "^1.2.2",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-toggle": "^1.1.1",
"@radix-ui/react-toggle-group": "^1.1.1",
"@statsig/react-bindings": "^3.8.1",
"@statsig/session-replay": "^3.8.1",
"@statsig/web-analytics": "^3.8.1",
"@vitejs/plugin-react": "^4.3.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"immer": "^10.1.1",
"install": "^0.13.0",
"lodash": "^4.17.21",
"lucide-react": "^0.456.0",
"npm": "^11.0.0",
"qrcode.react": "^3.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.19.2",
"vaul": "^1.1.1",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.1",
"zustand": "^4.5.5"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.9",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.2",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.7",
"@types/react-helmet": "^6.1.11",
"autoprefixer": "^10.4.20",
"gh-pages": "^6.2.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vite": "^5.4.11"
}
}