-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 3.32 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
{
"name": "@pagopa/interop-fe-commons",
"version": "1.4.8",
"description": "",
"scripts": {
"lint": "tsc",
"build": "vite build",
"test": "npm run lint && vitest run",
"prettify": "prettier --write .",
"prepare": "husky install",
"build-storybook": "storybook build",
"chromatic": "chromatic",
"storybook": "storybook dev -p 6006"
},
"devDependencies": {
"@babel/core": "^7.22.17",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/base": "^5.0.0-beta.15",
"@mui/icons-material": "^5.14.9",
"@mui/lab": "^5.0.0-alpha.144",
"@mui/material": "^5.14.9",
"@mui/system": "^5.14.9",
"@mui/x-date-pickers": "^6.13.0",
"@pagopa/mui-italia": "^1.0.1",
"@storybook/addon-actions": "^7.4.1",
"@storybook/addon-essentials": "^7.4.1",
"@storybook/addon-interactions": "^7.4.1",
"@storybook/addon-links": "^7.4.1",
"@storybook/react": "^7.4.1",
"@storybook/react-vite": "^7.4.1",
"@storybook/testing-library": "^0.2.0",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/mixpanel-browser": "^2.49.0",
"@types/node": "^20.6.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/react-test-renderer": "^18.0.1",
"@types/styled-components": "^5.1.27",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-react": "^4.0.4",
"@vitest/coverage-c8": "^0.33.0",
"babel-loader": "^9.1.3",
"chromatic": "^7.1.0",
"date-fns": "^2.30.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"history": "^5.3.0",
"husky": "^8.0.3",
"i18next": "^23.5.1",
"jsdom": "^22.1.0",
"lint-staged": "^14.0.1",
"mixpanel-browser": "^2.50.0",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.46.1",
"react-i18next": "^13.2.2",
"react-router-dom": "^6.16.0",
"react-test-renderer": "^18.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-visualizer": "^5.9.2",
"storybook": "^7.4.1",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.3",
"vitest": "^0.34.4"
},
"license": "MIT",
"peerDependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/base": "^5.0.0-beta.15",
"@mui/icons-material": "^5.14.9",
"@mui/lab": "^5.0.0-alpha.144",
"@mui/material": "^5.14.9",
"@mui/system": "^5.14.9",
"@mui/x-date-pickers": "^6.13.0",
"@pagopa/mui-italia": "^1.0.1",
"date-fns": "^2.30.0",
"i18next": "^23.5.1",
"mixpanel-browser": "^2.50.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.46.1",
"react-i18next": "^13.2.2",
"react-router-dom": "^6.16.0"
},
"files": [
"dist"
],
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}