forked from eclipse-tractusx/portal-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.63 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.63 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
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
123
124
125
126
127
128
129
130
{
"name": "@catena-x/portal-frontend",
"version": "v2.6.0",
"description": "Catena-X Portal Frontend",
"author": "Catena-X Contributors",
"license": "Apache-2.0",
"type": "module",
"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}": [
"prettier --write --ignore-unknown",
"eslint --quiet --fix"
],
"*.{json,css,sass,scss,xml,yml,yaml,md}": [
"prettier --write --ignore-unknown"
],
"*.test.{js,jsx,ts,tsx}": [
"jest"
]
},
"dependencies": {
"@catena-x/portal-shared-components": "^4.0.1",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@hookform/error-message": "^2.0.1",
"@mui/icons-material": "^5.16.14",
"@mui/material": "^5.16.14",
"@mui/x-data-grid": "^7.29.8",
"@react-hook/cache": "^1.1.1",
"@reduxjs/toolkit": "^2.2.8",
"autosuggest-highlight": "^3.3.4",
"buffer": "^6.0.3",
"dayjs": "^1.11.13",
"i18next": "^23.15.2",
"i18next-browser-languagedetector": "^7.2.2",
"keycloak-js": "^25.0.6",
"lodash.debounce": "^4.0.8",
"lodash.uniq": "^4.5.0",
"nanoid": "^5.0.9",
"papaparse": "^5.4.1",
"phone": "^3.1.66",
"qs": "^6.13.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.10",
"react-hook-form": "^7.53.2",
"react-i18next": "^14.1.3",
"react-player": "^2.16.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.22.3",
"sass": "^1.79.6"
},
"devDependencies": {
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/autosuggest-highlight": "^3.2.3",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.20",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.uniq": "^4.5.9",
"@types/node": "^20.16.15",
"@types/papaparse": "^5.3.15",
"@types/qs": "^6.9.18",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-redux": "^7.1.34",
"@types/react-slick": "^0.23.13",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vitejs/plugin-react": "^4.3.4",
"cypress": "^13.15.2",
"eslint": "^8.57.0",
"eslint-config-love": "^43.1.0",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vite": "^5.4.19",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.2"
},
"resolutions": {
"@types/lodash": "^4.17.20"
},
"scripts": {
"prepare": "husky",
"pretty": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,sass,scss,xml,yml,yaml,md}\"",
"pretty:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,css,sass,scss,xml,yml,yaml,md}\"",
"lint": "eslint \"./src/**/*.{ts,tsx,js,jsx}\" --report-unused-disable-directives --max-warnings 0",
"start": "vite --host --port 3001",
"build": "yarn build:copy-legal-info && tsc && vite build",
"test": "jest",
"test:ci": "CI=true jest",
"build:docker": "if [ -d \"./build\" ]; then yarn build:docker:prebuilt; else yarn build:docker:full; fi",
"build:docker:full": "IMAGE=$npm_package_config_image && docker build -t $IMAGE -f .conf/Dockerfile.full --build-arg \"http_proxy=${http_proxy}\" --build-arg \"https_proxy=${https_proxy}\" --build-arg \"no_proxy=${no_proxy}\" .",
"build:docker:prebuilt": "IMAGE=$npm_package_config_image && docker build -t $IMAGE -f .conf/Dockerfile.prebuilt . && docker tag $IMAGE:latest $IMAGE:$npm_package_version",
"start:docker": "IMAGE=$npm_package_config_image && docker run --rm -d -p 3001:8080 --name cx-portal $IMAGE",
"publish:docker": "IMAGE=$npm_package_config_image && docker tag $IMAGE:latest $IMAGE:$npm_package_version && docker push $IMAGE:$npm_package_version && docker push $IMAGE:latest",
"build:legal-notice": "bash scripts/legal-notice.sh",
"build:copy-legal-info": "cp LICENSE NOTICE.md DEPENDENCIES SECURITY.md public/",
"cy:open": "cypress open"
}
}