blob: 4f21636cd9518057c0f6497c83960779f3af2f6d [file] [log] [blame]
gio5f2f1002025-03-20 18:38:48 +04001{
giod0026612025-05-08 13:00:36 +00002 "name": "code",
3 "private": true,
4 "version": "0.0.0",
5 "type": "module",
6 "scripts": {
7 "dev": "vite --port=$DODO_PORT_WEB --host",
gio2f393c12025-07-01 08:02:48 +00008 "build": "NODE_OPTIONS=--max-old-space-size=1000 vite build",
giob77cb932025-05-19 09:37:14 +00009 "format": "prettier --write src/**/*.{js,ts,jsx,tsx} --list-different",
giod0026612025-05-08 13:00:36 +000010 "format-check": "prettier --check src/**/*.{js,ts,jsx,tsx}",
11 "lint": "eslint .",
12 "preview": "vite preview --port=$DODO_PORT_WEB --host",
13 "watch": "watch 'npm run build' ."
14 },
15 "watch": {
16 "ignoreDirectoryPattern": "dist"
17 },
18 "dependencies": {
19 "@hookform/resolvers": "^3.9.1",
gio880de162025-05-11 07:26:00 +000020 "@microlink/react-json-view": "^1.26.1",
giod0026612025-05-08 13:00:36 +000021 "@radix-ui/react-accordion": "^1.2.1",
22 "@radix-ui/react-checkbox": "^1.3.1",
23 "@radix-ui/react-collapsible": "^1.1.1",
gioa71316d2025-05-24 09:41:36 +040024 "@radix-ui/react-dialog": "^1.1.14",
gio818da4e2025-05-12 14:45:35 +000025 "@radix-ui/react-dropdown-menu": "^2.1.14",
giod0026612025-05-08 13:00:36 +000026 "@radix-ui/react-icons": "^1.3.1",
gioa71316d2025-05-24 09:41:36 +040027 "@radix-ui/react-label": "^2.1.7",
giod0026612025-05-08 13:00:36 +000028 "@radix-ui/react-popover": "^1.1.2",
29 "@radix-ui/react-scroll-area": "^1.2.0",
30 "@radix-ui/react-select": "^2.1.2",
31 "@radix-ui/react-separator": "^1.1.0",
32 "@radix-ui/react-slot": "^1.1.0",
gioa71316d2025-05-24 09:41:36 +040033 "@radix-ui/react-switch": "^1.2.5",
giod0026612025-05-08 13:00:36 +000034 "@radix-ui/react-tabs": "^1.1.1",
35 "@radix-ui/react-toast": "^1.2.13",
36 "@radix-ui/react-tooltip": "^1.1.4",
37 "@xyflow/react": "^12.3.3",
38 "class-variance-authority": "^0.7.0",
39 "clsx": "^2.1.1",
gioc31bf142025-06-16 07:48:20 +000040 "config": "file:../config",
giod0026612025-05-08 13:00:36 +000041 "lucide-react": "^0.454.0",
42 "react": "^18.3.1",
43 "react-dom": "^18.3.1",
44 "react-hook-form": "^7.53.1",
45 "react-icons": "^5.3.0",
46 "react-resizable-panels": "^2.1.6",
47 "tailwind-merge": "^2.5.4",
48 "tailwindcss-animate": "^1.0.7",
49 "uuid": "^11.0.2",
50 "zod": "^3.23.8",
51 "zustand": "^5.0.1"
52 },
53 "devDependencies": {
54 "@eslint/js": "^9.13.0",
55 "@types/node": "^22.8.4",
56 "@types/react": "^18.3.12",
57 "@types/react-dom": "^18.3.1",
58 "@vitejs/plugin-react": "^4.3.3",
59 "autoprefixer": "^10.4.20",
60 "eslint": "^9.13.0",
61 "eslint-plugin-react-hooks": "^5.0.0",
62 "eslint-plugin-react-refresh": "^0.4.14",
63 "globals": "^15.11.0",
64 "postcss": "^8.4.47",
65 "prettier": "3.5.3",
66 "tailwindcss": "^3.4.14",
67 "typescript": "~5.6.2",
68 "typescript-eslint": "^8.11.0",
69 "vite": "^5.4.10",
70 "watch": "^1.0.2"
71 },
72 "prettier": {
73 "printWidth": 120,
74 "tabWidth": 4,
75 "useTabs": true,
76 "singleQuote": false,
77 "trailingComma": "all",
78 "semi": true,
79 "bracketSpacing": true,
80 "arrowParens": "always"
81 }
gio880de162025-05-11 07:26:00 +000082}