-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.21 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
{
"name": "workflows-lib",
"private": true,
"version": "0.1.6",
"type": "module",
"files": [
"dist"
],
"main": "lib/main.ts",
"scripts": {
"dev": "vite",
"prebuild": "rm -rf dist",
"build": "tsc --build && vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"peerDependencies": {
"@dagrejs/dagre": "^1.1.4",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@jsonforms/core": "^3.4.0",
"@jsonforms/material-renderers": "^3.4.0",
"@jsonforms/react": "^3.4.0",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.7",
"@mui/x-date-pickers": "^7.20.0",
"@xyflow/react": "^12.1.1",
"ajv": "^8.17.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.2",
"@storybook/addon-links": "^9.1.15",
"@storybook/react-vite": "^9.1.15",
"@types/jest": "^30.0.0",
"@types/react-resizable": "^3.0.8",
"react-resizable": "^3.0.5",
"storybook": "^9.1.19",
"@storybook/addon-docs": "^10.0.6"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}