-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.28 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.28 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "genesys-ui",
"version": "20.1.2",
"description": "",
"type": "module",
"private": true,
"scripts": {
"clean:cache": "rm -rf node_modules/.cache",
"clean": "rm -rf storybook-static coverage packages/*/dist packages/*/coverage",
"build": "npm run build -ws --if-present",
"lint": "oxlint -c oxlintrc.json",
"start": "npm run storybook",
"storybook": "storybook dev -p 6006",
"build-storybook": "NODE_OPTIONS=\"--max_old_space_size=4096\" storybook build",
"stryker": "npm run stryker -ws --if-present",
"test": "vitest",
"dpdm": "npm run dpdm -ws --if-present",
"release": "release-it --dry-run",
"release:ci": "release-it --ci"
},
"keywords": [],
"author": "Devo, Inc. Quvis Team (https://github.com/orgs/DevoInc/teams/quvis)",
"license": "MIT",
"devDependencies": {
"@devoinc/genesys-base-styles": "^2.1.0",
"@devoinc/genesys-brand-devo": "^8.11.0",
"@devoinc/genesys-icons": "^8.0.0",
"@devoinc/genesys-tokens-types": "^7.16.0",
"@devoinc/holo": "^2.0.1",
"@release-it-plugins/workspaces": "^4.2.0",
"@release-it/conventional-changelog": "^9.0.3",
"@storybook/addon-a11y": "^9.0.9",
"@storybook/addon-docs": "^9.0.9",
"@storybook/addon-links": "^9.0.9",
"@storybook/addon-themes": "^9.0.9",
"@storybook/builder-vite": "^9.0.9",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react-vite": "^9.0.9",
"@stryker-mutator/core": "^9.0.1",
"@stryker-mutator/vitest-runner": "^9.0.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/js-cookie": "^3.0.6",
"@types/node": "^24.0.1",
"@vitejs/plugin-react": "^4.5.2",
"@vitest/coverage-v8": "^3.2.3",
"babel-plugin-styled-components": "^2.1.4",
"dpdm": "^3.14.0",
"esbuild-plugin-styled-components": "^3.0.1",
"framer-motion": "^12.17.3",
"happy-dom": "^18.0.1",
"identity-obj-proxy": "^3.0.0",
"js-cookie": "^3.0.5",
"mermaid": "^11.6.0",
"oxlint": "^1.1.0",
"polished": "^4.3.1",
"prettier": "^3.5.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-syntax-highlighter": "^15.6.1",
"release-it": "^17.10.0",
"remark-gfm": "^4.0.1",
"sass": "^1.89.2",
"semver": "^7.7.2",
"storybook": "^9.0.9",
"terser": "^5.42.0",
"tocbot": "^4.36.4",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-babel-macros": "^1.0.6",
"vite-plugin-dts": "^4.5.4",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.3",
"vitest-canvas-mock": "^0.3.3",
"viz.js": "^2.1.2"
},
"overrides": {
"ahooks": {
"react": "$react",
"react-dom": "$react-dom"
},
"react-dock": {
"react": "$react"
},
"react-grid-system": {
"react": "$react"
},
"react-popper": {
"react": "$react",
"react-dom": "$react-dom"
},
"react-windowed-select": {
"react": "$react",
"react-dom": "$react-dom"
}
},
"workspaces": [
"packages/core",
"packages/code",
"packages/datetime",
"packages/color",
"packages/upload",
"packages/table"
],
"engines": {
"node": ">=18",
"npm": ">=7"
}
}