-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
122 lines (122 loc) · 3.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
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
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@catena-x/portal-frontend-registration",
"version": "v2.1.0-RC1",
"description": "Catena-X Portal Frontend Registration App",
"author": "Catena-X Contributors",
"license": "Apache-2.0",
"type": "module",
"homepage": "/registration",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-tractusx/portal-frontend.git"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint:staged": {
"**/*.{js,jsx,ts,tsx}": [
"yarn test:ci"
]
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@hookform/error-message": "^2.0.1",
"@mui/icons-material": "^5.15.14",
"@mui/material": "^5.15.14",
"@react-hook/cache": "^1.1.1",
"@reduxjs/toolkit": "^2.2.8",
"axios": "^1.6.8",
"bootstrap": "^5.3.3",
"buffer": "^6.0.3",
"dayjs": "^1.11.10",
"history": "^5.3.0",
"i18next": "^23.15.2",
"i18next-browser-languagedetector": "^7.2.0",
"keycloak-js": "^25.0.6",
"lodash.debounce": "^4.0.8",
"lodash.uniq": "^4.5.0",
"nanoid": "^5.0.6",
"papaparse": "^5.4.1",
"phone": "^3.1.51",
"qs": "^6.12.0",
"react": "^18.2.0",
"react-bootstrap": "^2.10.2",
"react-datepicker": "^6.7.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.10",
"react-dropzone-uploader": "^2.11.0",
"react-hook-form": "^7.53.1",
"react-i18next": "^14.1.0",
"react-icons": "^5.0.1",
"react-player": "^2.15.1",
"react-redux": "^9.1.0",
"react-router-dom": "5.3.4",
"react-search-input": "^0.11.3",
"react-toastify": "^10.0.6",
"react-tooltip": "^5.26.3",
"redux-actions": "^3.0.0",
"sass": "^1.79.6",
"uuid": "^9.0.1"
},
"devDependencies": {
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.12",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.uniq": "^4.5.9",
"@types/node": "^20.16.14",
"@types/papaparse": "^5.3.15",
"@types/qs": "^6.9.13",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/react-redux": "^7.1.33",
"@types/react-slick": "^0.23.13",
"@types/redux-actions": "^2.6.5",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^8.57.0",
"eslint-config-love": "^43.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.4",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.2"
},
"scripts": {
"prepare": "husky",
"pretty": "prettier --write \"./src/**/*.{ts,tsx,js,jsx,json,css,sass,scss,xml,md}\"",
"lint": "eslint \"./src/**/*.{ts,tsx,js,jsx}\" --report-unused-disable-directives --max-warnings 0",
"start": "vite --host --port 3002",
"build": "yarn build:copy-legal-info && tsc && vite build",
"build:legal-notice": "bash scripts/legal-notice.sh",
"build:copy-legal-info": "cp LICENSE NOTICE.md DEPENDENCIES SECURITY.md public/",
"test": "jest",
"test:ci": "CI=true jest"
}
}