-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
95 lines (95 loc) · 2.57 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
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": "zenml-dashboard",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc && vite build",
"dev": "vite",
"format": "prettier --write .",
"generate:types": "node scripts/types.js",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prepare": "husky",
"preview": "vite preview",
"test:e2e": "playwright test",
"test:unit": "vitest run"
},
"lint-staged": {
"*.{cjs,js,jsx,ts,tsx,css,scss}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@dagrejs/dagre": "^1.1.4",
"@fontsource/inter": "^5.1.1",
"@hookform/resolvers": "^3.10.0",
"@radix-ui/react-tabs": "^1.1.2",
"@tanstack/react-query": "^5.65.1",
"@tanstack/react-table": "^8.20.6",
"@tisoap/react-flow-smart-edge": "^3.0.0",
"@zenml-io/react-component-library": "^0.22.0",
"awesome-debounce-promise": "^2.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"immer": "^10.1.1",
"jwt-decode": "^4.0.0",
"lodash.debounce": "^4.0.8",
"papaparse": "^5.5.2",
"prismjs": "^1.29.0",
"react": "^18.3.1",
"react-countdown": "^2.3.6",
"react-dom": "^18.3.1",
"react-error-boundary": "^5.0.0",
"react-hook-form": "^7.54.2",
"react-joyride": "^2.9.3",
"react-markdown": "^9.0.3",
"react-router-dom": "^6.27.0",
"reactflow": "^11.11.4",
"unique-names-generator": "^4.7.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@playwright/test": "^1.50.0",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^22.12.0",
"@types/papaparse": "^5.3.15",
"@types/prismjs": "^1.26.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.18",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"openapi-typescript": "^6.7.6",
"postcss": "^8.5.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vite-plugin-bundle-prefetch": "^0.0.4",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^3.0.5"
},
"pnpm": {
"overrides": {
"braces": "^3.0.3",
"cross-spawn": "^7.0.5",
"micromatch": "^4.0.8",
"nanoid": "^3.3.8",
"undici": "^5.28.5"
}
}
}