-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.86 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": "react-playground",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"stubs": "stubby -d ./stubs/api.yml --watch",
"dev:stubs": "npm run dev & npm run stubs",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"postinstall": "patch-package",
"lint": "biome lint src",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck"
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"@hookform/devtools": "^4.3.1",
"@hookform/resolvers": "^3.9.0",
"@reactflow/node-resizer": "^2.2.14",
"classnames": "^2.5.1",
"klona": "^2.0.6",
"ky": "^1.5.0",
"normalize.css": "^8.0.1",
"react": "^18.3.1",
"react-dnd": "^16.0.1",
"react-dnd-accessible-backend": "^2.1.0",
"react-dnd-html5-backend": "^16.0.1",
"react-dnd-multi-backend": "^8.0.3",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.1",
"react-icons": "^5.2.1",
"react-router-dom": "^6.26.0",
"react-use": "^17.5.1",
"react-use-click-away": "^1.0.10",
"react-virtuoso": "^4.9.0",
"reactflow": "^11.11.4",
"sass": "^1.77.8",
"uuid": "^10.0.0",
"zod": "^3.23.8",
"zustand": "^4.5.4"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.1",
"jsdom": "^24.1.1",
"patch-package": "^8.0.0",
"stubby": "^5.1.0",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vitest": "^2.0.5"
},
"overrides": {
"react-dnd-accessible-backend": {
"react": "$react",
"react-dnd": "$react-dnd"
}
}
}