-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.91 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.91 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
{
"name": "package.json",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"tailwind:init": "tailwindcss init -p",
"type-check": "tsc --noEmit",
"audit": "pnpm audit --audit-level=high",
"test": "pnpm run lint && pnpm run type-check && pnpm run audit",
"test:unit": "vitest run",
"test:watch": "vitest",
"test:e2e": "cypress open",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test:e2e:local": "start-server-and-test preview http://localhost:4173 cy:run"
},
"dependencies": {
"@blocknote/core": "^0.37.0",
"@blocknote/mantine": "^0.37.0",
"@blocknote/react": "^0.37.0",
"@hookform/resolvers": "^5.2.1",
"@tanstack/react-query": "^5.85.6",
"@tanstack/react-query-devtools": "^5.85.6",
"axios": "^1.12.0",
"clsx": "^2.1.1",
"lucide-react": "^0.534.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-hook-form": "^7.62.0",
"react-hot-toast": "^2.6.0",
"react-router-dom": "^7.7.0",
"recharts": "^3.1.2",
"tailwind-merge": "^3.3.1",
"three": "^0.179.1",
"valibot": "^1.2.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.3",
"@eslint/js": "^9.33.0",
"@storybook/addon-a11y": "^10.1.4",
"@storybook/addon-docs": "^10.1.4",
"@storybook/addon-onboarding": "^10.1.4",
"@storybook/addon-vitest": "^10.1.4",
"@storybook/experimental-addon-test": "^8.6.14",
"@storybook/react": "^10.1.4",
"@storybook/react-vite": "^10.1.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^25.0.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/three": "^0.179.0",
"@vitejs/plugin-react": "^4.6.0",
"@vitest/browser-playwright": "^4.0.15",
"@vitest/coverage-v8": "^4.0.15",
"autoprefixer": "^10.4.21",
"cypress": "^15.7.1",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-storybook": "^10.1.4",
"globals": "^16.3.0",
"jsdom": "^27.2.0",
"knip": "^5.73.1",
"playwright": "^1.57.0",
"postcss": "^8.5.6",
"storybook": "^10.1.4",
"tailwindcss": "^3.4.4",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.1",
"vite": "^7.1.5",
"vite-plugin-mkcert": "^1.17.9",
"vitest": "^4.0.15"
},
"pnpm": {
"overrides": {
"glob": "^10.5.0",
"systeminformation": ">=5.27.14"
}
},
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39"
}