-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
113 lines (113 loc) · 3.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@cdc/root",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@faker-js/faker": "^8.4.1",
"@rollup/plugin-dsv": "^3.0.2",
"@storybook/addon-a11y": "^7.6.16",
"@storybook/addon-docs": "^7.4.6",
"@storybook/addon-essentials": "^7.4.6",
"@storybook/addon-interactions": "^7.4.6",
"@storybook/addon-links": "^7.4.6",
"@storybook/addons": "^7.4.6",
"@storybook/blocks": "^7.4.6",
"@storybook/builder-vite": "^7.4.6",
"@storybook/jest": "^0.2.2",
"@storybook/manager-api": "^7.4.6",
"@storybook/react": "^7.4.6",
"@storybook/react-vite": "^7.4.6",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^7.4.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/resize-observer-browser": "^0.1.5",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^7.0.1",
"@visx/group": "^3.0.0",
"@visx/heatmap": "^3.0.0",
"@visx/scale": "^3.0.0",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "^0.29.2",
"@vitest/ui": "^0.29.2",
"babel-eslint": "^10.1.0",
"d3-composite-projections": "^1.4.0",
"eslint": "^8.44.0",
"eslint-config-airbnb-typescript": "12.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.11",
"gh-pages": "^5.0.0",
"html-react-parser": "^3.0.8",
"husky": "^4.3.0",
"jsdom": "^22.1.0",
"lerna": "^7.1.3",
"lint-staged": "^10.4.0",
"lodash": "^4.17.21",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2",
"mini-svg-data-uri": "^1.2.3",
"pathe": "^1.1.0",
"prettier": "^2.8.1",
"pretty": "^2.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dom": "^18.2.0",
"react-tooltip": "^5.7.2",
"react-visibility-sensor": "^5.1.1",
"resize-observer-polyfill": "^1.5.1",
"rollup-plugin-node-externals": "^6.1.2",
"sass": "^1.59.3",
"storybook": "^7.4.6",
"storybook-addon-fetch-mock": "^1.0.1",
"use-debounce": "^7.0.1",
"vite": "^4.4.11",
"vite-plugin-css-injected-by-js": "^2.4.0",
"vite-plugin-md": "^0.21.5",
"vite-plugin-svgr": "^2.4.0",
"vitest": "^1.2.2",
"whatwg-fetch": "^3.6.2"
},
"lint-staged": {
"./packages/*/src/**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"eslint --config .eslintrc.json"
]
},
"scripts": {
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"publish": "npx lerna publish",
"storybook": "storybook dev -p 6006",
"storybook-docs": "storybook dev --docs",
"build-storybook": "storybook build",
"predeploy": "storybook build --output-dir .storybook_build && touch .storybook_build/.nojekyll",
"deploy": "gh-pages -d .storybook_build -t true"
},
"dependencies": {
"@visx/annotation": "^3.3.0",
"@visx/brush": "^3.0.1",
"@visx/legend": "^3.0.0",
"@visx/pattern": "^3.0.0",
"@visx/responsive": "^2.10.0",
"@vitest/coverage-v8": "^1.2.2",
"dompurify": "^3.1.5"
},
"resolutions": {
"jackspeak": "2.1.1"
}
}