-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.71 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
{
"name": "miw",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite --mode locals",
"build": "vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build",
"lint": "eslint 'src/**/*.{js,ts,tsx,jsx}' --quiet --fix",
"lint:show": "eslint 'src/**/*.{js,ts,tsx,jsx}' --quiet",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@material-ui/core": "^4.12.4",
"@mui/material": "5.5.2",
"@react-keycloak/web": "^3.4.0",
"axios": "^0.26.1",
"date-fns": "^2.30.0",
"final-form": "^4.20.9",
"i18next": "^22.4.9",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.1.1",
"keycloak-js": "20.0.0",
"material-ui-chip-input": "^1.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^3.1.4",
"react-file-drop": "^3.1.3",
"react-final-form": "^6.5.9",
"react-i18next": "^12.1.5",
"react-router": "^6.8.1",
"react-router-dom": "^6.8.1",
"react-select": "^5.7.4",
"react-toastify": "^9.1.1",
"sass": "^1.58.1",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-vite": "^0.4.2",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@types/node": "^18.13.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@vitejs/plugin-react": "^3.1.0",
"babel-loader": "^8.3.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-storybook": "^0.6.11",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^3.0.2",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vite-plugin-dts": "^1.7.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "yarn lint",
"*.{json,css,md}": "prettier --write"
}
}