-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.65 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.65 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
{
"name": "sap-customer-data-cloud-toolkit",
"version": "1.11.3",
"private": false,
"dependencies": {
"@octokit/rest": "^21.0.2",
"@babel/runtime": "^7.27.0",
"@reduxjs/toolkit": "^1.8.6",
"@sap_oss/automated-usage-tracking-tool": "^1.0.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@ui5/webcomponents": "^1.24.20",
"@ui5/webcomponents-fiori": "^1.24.20",
"@ui5/webcomponents-icons": "^1.24.20",
"@ui5/webcomponents-react": "^1.28.1",
"@webcomponents/custom-elements": "^1.6.0",
"axios": "^1.9.0",
"crypto-js": "^4.2.0",
"fast-xml-parser": "4.4.1",
"i18next": "^23.0.0",
"js-base64": "^3.7.7",
"js-cookie": "^3.0.5",
"jszip": "^3.10.1",
"lodash": "^4.17.21",
"os": "^0.1.2",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-i18next": "^13.0.0",
"react-jss": "^10.10.0",
"react-redux": "^8.1.0",
"redux": "^4.2.0",
"redux-mock-store": "^1.5.4",
"sass": "^1.58.0",
"wait-on": "^7.0.1",
"web-vitals": "^3.0.3"
},
"scripts": {
"start": "react-scripts -r @cypress/instrument-cra start",
"prebuild": "npm run lint",
"build": "CI=true react-scripts build",
"cypress:open": "cypress open",
"cypress:stage": "cypress run --browser chrome ",
"cypress:ci": "start-server-and-test start http://localhost:3000 cypress:stage",
"postbuild": "node ./scripts/postbuild.js",
"test": "CI=true react-scripts test --collect-coverage --coverage --watch=all --coverageDirectory=coverage/unit",
"eject": "react-scripts eject",
"lint": "npx eslint --ext .jsx,.js src/",
"prerelease": "npm run lint && npm run test",
"release": "CI=true release-it",
"compress": "zip -r ${npm_package_name}-${npm_package_version}.zip ./build/",
"manifest": "./public/scripts/manifest.sh ${npm_package_version}",
"beforerelease": "node ./scripts/beforeRelease.js"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!(@ui5|lit-html|@babel|axios|@octokit|universal-user-agent|before-after-hook)).*\\.js$"
],
"moduleNameMapper": {
"\\.(css)$": "identity-obj-proxy"
}
},
"nyc": {
"excludeAfterRemap": true,
"report-dir": "coverage/cypress",
"reporter": [
"text",
"json",
"lcov"
],
"include": [
"src"
]
},
"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"
]
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@bahmutov/cypress-code-coverage": "^2.0.0",
"@cypress/browserify-preprocessor": "^3.0.2",
"@cypress/code-coverage": "^3.10.0",
"@cypress/instrument-cra": "^1.4.0",
"@cypress/xvfb": "^1.2.4",
"babel-plugin-istanbul": "^6.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"concurrently": "^8.0.0",
"cypress": "^12.5.0",
"cypress-browser-extension-plugin": "^0.1.0",
"cypress-file-upload": "^5.0.8",
"cypress-jest-coverage-merge": "^1.0.2",
"cypress-real-events": "^1.7.6",
"cypress-wait-until": "^2.0.0",
"identity-obj-proxy": "^3.0.0",
"istanbul": "^0.4.5",
"istanbul-merge": "^2.0.0",
"nyc": "^15.1.0",
"prettier": "3.0.0",
"react-scripts": "5.0.1",
"release-it": "^19.0.2",
"start-server-and-test": "^2.0.0",
"redux-thunk": "^2.4.2"
}
}