-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.12 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.12 KB
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
{
"name": "interop-dashboard-frontend",
"version": "2.0.0",
"type": "module",
"packageManager": "pnpm@9.15.9",
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.app.json && vite build",
"build-dev": "tsc -p tsconfig.app.json && vite build --mode development",
"preview": "vite build --mode development && vite preview --mode development",
"test": "vitest run",
"coverage": "vitest run --coverage",
"generate-types": "node scripts/open-api-type-generator.js",
"crawling-guide-links": "node scripts/guide-crawl/index.js",
"prepare": "husky"
},
"dependencies": {
"@date-io/date-fns": "^2.17.0",
"@emotion/react": "11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/base": "^5.0.0-beta.15",
"@mui/icons-material": "^5.14.9",
"@mui/lab": "^5.0.0-alpha.144",
"@mui/material": "^5.16.14",
"@mui/system": "^5.14.9",
"@mui/x-date-pickers": "^6.13.0",
"@pagopa/interop-fe-commons": "^1.5.3",
"@pagopa/mui-italia": "^1.8.0",
"@tanstack/react-query": "^5.51.4",
"@tanstack/react-query-devtools": "^5.51.4",
"autosuggest-highlight": "^3.3.4",
"axios": "^1.6.0",
"date-fns": "^2.30.0",
"i18next": "^23.5.1",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"mixpanel-browser": "^2.49.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.11",
"react-hook-form": "7.46.1",
"react-i18next": "^13.2.2",
"react-router-dom": "6.4.3",
"ts-pattern": "^5.2.0",
"zod": "^4.0.0",
"zustand": "^4.4.1"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@mui/utils": "^7.3.8",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/autosuggest-highlight": "^3.2.0",
"@types/lodash": "^4.14.198",
"@types/mixpanel-browser": "^2.49.0",
"@types/node": "^20.6.0",
"@types/qs": "^6.9.8",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@types/react-test-renderer": "^18.0.1",
"@types/uuid": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vitejs/plugin-react": "^4.0.4",
"@vitest/coverage-v8": "^0.34.4",
"cheerio": "^1.0.0-rc.12",
"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": "^9.1.7",
"jsdom": "^22.1.0",
"marked": "^9.0.0",
"msw": "^1.3.1",
"node-html-parser": "^6.1.9",
"prettier": "^3.0.3",
"react-test-renderer": "^18.2.0",
"rollup-plugin-visualizer": "^5.9.2",
"swagger-typescript-api": "^13.0.3",
"typescript": "^5.2.2",
"validate-branch-name": "^1.3.2",
"vite": "^6.0.0",
"vitest": "^0.34.4"
},
"validate-branch-name": {
"pattern": "^(feature|release|hotfix|bugfix|refactor|performance|docs|build|ci|chore)/[A-Z]+-[0-9]+_.+$",
"errorMsg": "You need to follow this branching name rule: <type>/<JIRA_KEY>_<description>"
}
}