-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.34 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
{
"name": "test-ui-components-deploy",
"version": "0.0.1",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist/"
],
"sideEffects": [
"**/*.css"
],
"scripts": {
"start": "vite",
"build": "tsc --p ./tsconfig-build.json && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepublishOnly": "npm run build",
"publish-beta": "npm install && npm run build && npm publish --access public --tag beta",
"publish-prod": "npm install && npm run build && npm publish --access public"
},
"peerDependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fontsource-variable/work-sans": "^5.1.0",
"@mui/material": "^5.15.16",
"chart.js": "^4.3.0",
"chartjs-adapter-date-fns": "^3.0.0",
"dayjs": "^1.11.11",
"html-react-parser": "^5.1.10",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-scroll": "^1.9.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.3.3",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fontsource-variable/work-sans": "^5.1.0",
"@mui/material": "^5.15.16",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/addon-onboarding": "^8.0.9",
"@storybook/blocks": "^8.0.9",
"@storybook/react": "^8.0.9",
"@storybook/react-vite": "^8.0.9",
"@storybook/test": "^8.0.9",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/react-scroll": "^1.8.10",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"dayjs": "^1.11.11",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-storybook": "^0.8.0",
"glob": "^10.3.12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.76.0",
"storybook": "^8.0.9",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.9.0",
"vite-plugin-lib-inject-css": "^2.0.1",
"vite-plugin-svgr": "^4.2.0"
}
}