-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
124 lines (124 loc) · 4.42 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
123
124
{
"name": "explorer-mvs",
"version": "3.0.0",
"directories": {
"test": "tests"
},
"dependencies": {
"@material-ui/core": "4.12.4",
"@material-ui/icons": "4.11.3",
"immutable": "4.3.7",
"node-fetch": "^3.3.2",
"orion-editor-component": "0.0.16",
"prop-types": "15.8.1",
"query-string": "9.1.0",
"react": "16.14.0",
"react-contextmenu": "2.10.0",
"react-dom": "16.14.0",
"react-redux": "5.1.1",
"react-router": "5.0.1",
"react-router-dom": "5.0.1",
"redux": "4.0.4",
"redux-immutable": "4.0.0",
"redux-logger": "3.0.6",
"redux-thunk": "2.3.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.25.1",
"@babel/plugin-proposal-decorators": "7.24.7",
"@babel/preset-env": "7.25.4",
"@babel/preset-react": "7.24.7",
"@babel/preset-stage-0": "7.8.3",
"@babel/register": "7.24.6",
"@types/chai": "4.3.18",
"@types/mocha": "10.0.7",
"@types/node": "13.7.1",
"@types/react": "16.9.56",
"@types/selenium-webdriver": "4.1.26",
"babel-loader": "9.1.3",
"babel-plugin-react-html-attrs": "2.1.0",
"chai": "4.5.0",
"chai-things": "0.2.0",
"clean-webpack-plugin": "4.0.0",
"compression-webpack-plugin": "11.1.0",
"copy-webpack-plugin": "12.0.2",
"core-js": "3.38.1",
"cross-env": "7.0.3",
"css-loader": "7.1.2",
"dotenv": "16.4.5",
"eslint": "8.56.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-react": "7.35.0",
"expect": "1.20.2",
"explorer-fvt-utilities": "2.0.4",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.6.0",
"mocha": "10.7.3",
"mocha-jenkins-reporter": "0.4.8",
"nock": "13.5.5",
"npm-run-all": "4.1.5",
"nyc": "17.0.0",
"redux-mock-store": "1.5.4",
"rewire": "7.0.0 ",
"rimraf": "3.0.2",
"selenium-webdriver": "4.23.0",
"sinon": "4.1.2",
"style-loader": "4.0.0",
"terser-webpack-plugin": "5.3.10",
"ts-node": "8.6.2",
"typescript": "3.7.5",
"url-loader": "4.1.1",
"webpack": "5.94.0",
"webpack-bundle-analyzer": "4.10.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.2"
},
"scripts": {
"dev": "cross-env NODE_ENV='development' webpack serve --config ./webpack.config.js --hot ",
"start": "npm run build && cross-env NODE_ENV='development' OUTPUT_FOLDER='web' webpack --progress --color --watch ",
"lint": "eslint ./WebContent/js/ ./tests/",
"testWatch": "cross-env JUNIT_REPORT_PATH=target/report-fvt.xml mocha --watch --require @babel/register tests/UnitTests --recursive",
"test": "cross-env JUNIT_REPORT_PATH=target/report.xml nyc mocha --require @babel/register tests/UnitTests --recursive --color --reporter mocha-jenkins-reporter",
"test:fvt": "cross-env JUNIT_REPORT_PATH=target/report-fvt.xml mocha --timeout 999999 --require ts-node/register tests/FVTTests/**/*.ts --recursive --color --reporter mocha-jenkins-reporter",
"prod": "cross-env NODE_ENV='production' webpack --mode production",
"build": "cross-env NODE_ENV='development' OUTPUT_FOLDER='web' webpack --progress --color",
"prod:analyze": "cross-env ANALYZE=true npm run prod",
"preCommit": "npm-run-all --aggregate-output --parallel --print-label lint test prod"
},
"nyc": {
"reporter": [
"lcov",
"cobertura",
"text"
],
"report-dir": "./coverage",
"require": [
"@babel/register"
],
"all": true,
"include": [
"WebContent/js/actions/**",
"WebContent/js/reducers/**"
],
"exclude": [
"tests",
"WebContent/js/themes",
"WebContent/js/resources/languages"
]
},
"repository": "zowe/explorer-mvs",
"publishConfig": {
"registry": "https://zowe.jfrog.io/zowe/api/npm/npm-local-release/"
},
"browserslist": [
"last 2 years"
],
"description": "MVS Explorer",
"author": "IBM",
"license": "EPL-2.0",
"proxy": {
"target": "https://tvt5011.svl.ibm.com:7554"
}
}