-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.17 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
{
"name": "@somenergia/somenergia-ui",
"private": false,
"version": "0.5.1",
"description": "Common React components for Som Energia projects",
"license": "AGPL-3.0",
"homepage": "https://som-energia.github.io/somenergia-ui/",
"repository": {
"type": "git",
"url": "https://github.com/Som-Energia/somenergia-ui.git"
},
"type": "module",
"files": [
"dist"
],
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js"
},
"./*": {
"import": "./dist/*/index.es.js"
}
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint ./lib --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"test": "vitest",
"preview": "vite preview",
"deploy-storybook": "npm run build-storybook && touch storybook-static/.nojekyll && gh-pages -d storybook-static --dotfiles",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"cypress:open": "TZ=Europe/Madrid cypress open",
"cypress:run": "TZ=Europe/Madrid cypress run"
},
"peerDependencies": {
"@emotion/react": ">=11.11.1",
"@emotion/styled": ">=11.11.0",
"@mui/icons-material": ">=5.15.9 <6",
"@mui/material": "^5.15.14",
"@mui/styled-engine-sc": ">=6.0.0-alpha.9",
"@mui/x-date-pickers": "^6.19.7",
"@types/recharts-scale": "^1.0.3",
"dayjs": "^1.11.10",
"i18next": ">=23.7.12",
"i18next-browser-languagedetector": ">=7.2.0",
"react": ">=18.2.0",
"react-confetti-explosion": ">=2.1.2",
"react-dom": ">=18.2.0",
"react-i18next": ">=14.0.0",
"recharts": "^2.10.4",
"styled-components": ">=6.1.2"
},
"devDependencies": {
"@emotion/react": ">=11.11.1",
"@emotion/styled": ">=11.11.0",
"@modyfi/vite-plugin-yaml": "^1.0.4",
"@mui/icons-material": "<6 >=5.15.9",
"@mui/material": "^5.15.14",
"@mui/styled-engine-sc": ">=6.0.0-alpha.9",
"@mui/x-date-pickers": "^6.19.7",
"@storybook/addon-controls": "^7.6.6",
"@storybook/addon-essentials": "^7.6.6",
"@storybook/addon-interactions": "^7.6.6",
"@storybook/addon-links": "^7.6.6",
"@storybook/addon-mdx-gfm": "^7.6.6",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/addon-themes": "^7.6.6",
"@storybook/blocks": "^7.6.6",
"@storybook/react": "^7.6.6",
"@storybook/react-vite": "^7.6.6",
"@storybook/test": "^7.6.6",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/recharts-scale": "^1.0.3",
"@vitejs/plugin-react": "^4.2.0",
"cypress": "^13.7.2",
"dayjs": "^1.11.10",
"eslint": "^8.53.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"eslint-plugin-storybook": "^0.6.15",
"gh-pages": "^6.1.1",
"i18next": ">=23.7.12",
"i18next-browser-languagedetector": ">=7.2.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-confetti-explosion": ">=2.1.2",
"react-dom": "^18.2.0",
"react-i18next": "^14.0.0",
"recharts": "^2.10.4",
"storybook": "^7.6.6",
"styled-components": ">=6.1.2",
"vite": "^4.4",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^1.6.0"
}
}