-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.79 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
{
"name": "ddd-toolbox",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"postinstall": "cd apps/ddd-toolbox && pnpm install"
},
"type": "module",
"dependencies": {
"@astrojs/react": "4.4.0",
"@astrojs/sitemap": "3.6.0",
"@astrolib/seo": "1.0.0-beta.8",
"@radix-ui/react-alert-dialog": "1.1.15",
"@radix-ui/react-dialog": "1.1.15",
"@radix-ui/react-dropdown-menu": "2.1.16",
"@radix-ui/react-label": "2.1.7",
"@radix-ui/react-popover": "1.1.15",
"@radix-ui/react-separator": "1.1.7",
"@radix-ui/react-slot": "1.2.3",
"@radix-ui/react-tabs": "1.1.13",
"@radix-ui/react-toast": "1.2.15",
"@radix-ui/react-toggle": "1.1.10",
"@radix-ui/react-tooltip": "1.2.8",
"@yeskunall/astro-umami": "0.0.7",
"astro": "5.14.1",
"browser-fs-access": "0.38.0",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"emittery": "1.2.0",
"lucide-react": "0.544.0",
"lz-string": "1.5.0",
"react": "19.1.1",
"react-dom": "19.1.1",
"react-hook-form": "7.63.0",
"sonner": "2.0.7",
"tailwind-merge": "3.3.1",
"tailwindcss-animate": "1.0.7",
"tldraw": "4.0.3"
},
"devDependencies": {
"@eslint/js": "9.36.0",
"@hookform/resolvers": "3.10.0",
"@nx/devkit": "21.6.10",
"@nx/eslint": "21.6.10",
"@nx/eslint-plugin": "21.6.10",
"@nx/js": "21.6.10",
"@nx/playwright": "21.6.10",
"@nx/react": "21.6.10",
"@nx/vite": "21.6.10",
"@nx/web": "21.6.10",
"@playwright/test": "1.55.1",
"@swc-node/register": "1.11.1",
"@swc/cli": "0.7.8",
"@swc/core": "1.13.5",
"@swc/helpers": "0.5.17",
"@tailwindcss/vite": "4.1.14",
"@testing-library/dom": "10.4.1",
"@testing-library/react": "16.3.0",
"@types/node": "22.18.0",
"@types/react": "19.1.17",
"@types/react-dom": "19.1.11",
"@types/wicg-file-system-access": "2023.10.6",
"@vitejs/plugin-react": "5.0.4",
"@vitejs/plugin-react-swc": "4.1.0",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"eslint": "9.36.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-playwright": "2.2.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"husky": "9.1.7",
"jsdom": "26.1.0",
"nx": "21.6.10",
"prettier": "3.6.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "4.1.14",
"tslib": "2.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.45.0",
"vite": "7.1.7",
"vitest": "3.2.4",
"zod": "4.1.11"
},
"lint-staged": {
"*.{ts,tsx,css,json,md}": [
"pnpm exec nx affected:lint --fix --files",
"pnpm exec nx format:write --files"
]
}
}