-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.86 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
{
"name": "product-portal-frontend-registration",
"version": "0.5.1",
"license": "Apache-2.0",
"homepage": "/registration",
"scripts": {
"pretty": "prettier --write \"./src/**/*.{ts,tsx,js,jsx,json,css,sass,scss,xml,md}\"",
"lint": "eslint ./src",
"start": "react-scripts start",
"build:dirty": "DISABLE_ESLINT_PLUGIN=true react-scripts build",
"build": "react-scripts build && mkdir registration && mv build/* registration && mv registration build/",
"build:sources": "zip -r portal-registration.zip src package.json yarn.lock -x '*.stories.*' -x '*.test.*' -x '*.ttf' -x '*.svg' -x '*.png'",
"test": "react-scripts test",
"test:ci": "CI=true react-scripts test",
"eject": "react-scripts eject",
"dist": "npm run build && mkdir -p dist && cd build && 7z u ../dist/build.zip .",
"deploy": "export CAX_ENV=${CAX_ENV:-dev003} && az webapp deployment source config-zip --resource-group catenax-${CAX_ENV}-rg --name catenax-${CAX_ENV}-app-onboarding --src ./dist/build.zip"
},
"dependencies": {
"@fluentui/react": "^8.67.1",
"@reduxjs/toolkit": "^1.8.1",
"@types/react-redux": "^7.1.22",
"@types/redux-actions": "^2.6.2",
"axios": "^0.27.2",
"bootstrap": "^5.1.3",
"history": "^4.10.1",
"i18next": "^21.5.3",
"i18next-browser-languagedetector": "^6.1.2",
"immer": "^9.0.12",
"keycloak-js": "^15.0.2",
"moment": "^2.29.4",
"react": "^18.1.0",
"react-bootstrap": "^2.0.4",
"react-datepicker": "^4.5.0",
"react-dom": "^18.1.0",
"react-drag-drop-files": "^2.1.14",
"react-dropzone": "^11.5.1",
"react-dropzone-uploader": "^2.11.0",
"react-i18next": "^11.14.3",
"react-icons": "^4.3.1",
"react-redux": "^7.2.6",
"react-router-dom": "^5.2.0",
"react-scripts": "5.0.1",
"react-search-input": "^0.11.3",
"react-toastify": "^8.2.0",
"react-tooltip": "^4.2.21",
"redux": "^4.1.2",
"redux-actions": "^2.6.5",
"uuid": "^8.3.2",
"vis": "^4.21.0-EOL",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.29",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.0",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^7.11.0",
"eslint-plugin-react": "^7.29.4",
"node-forge": "1.3.1",
"prettier": "2.6.2",
"typescript": "^4.6.3"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}