-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
122 lines (122 loc) · 4.39 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": "explorer-mvs",
"version": "2.0.10",
"directories": {
"test": "tests"
},
"dependencies": {
"@material-ui/core": "4.11.0",
"@material-ui/icons": "4.9.1",
"babel-polyfill": "6.16.0",
"immutable": "3.8.2",
"orion-editor-component": "0.0.14",
"prop-types": "15.7.2",
"query-string": "6.8.2",
"react": "16.14.0",
"react-contextmenu": "2.10.0",
"react-dom": "16.14.0",
"react-redux": "5.1.1",
"react-router": "5.3.4",
"react-router-dom": "5.3.4",
"redux": "4.0.4",
"redux-immutable": "4.0.0",
"redux-logger": "3.0.6",
"redux-thunk": "2.3.0",
"whatwg-fetch": "2.0.3"
},
"devDependencies": {
"@babel/eslint-parser": "7.19.1",
"@babel/plugin-proposal-decorators": "7.15.8",
"@babel/preset-env": "7.15.8",
"@babel/preset-react": "7.14.5",
"@babel/register": "7.15.3",
"@types/chai": "4.1.3",
"@types/mocha": "9.0.0",
"@types/node": "13.7.1",
"@types/selenium-webdriver": "4.0.8",
"babel-loader": "8.3.0",
"babel-plugin-react-html-attrs": "2.0.0",
"chai": "4.2.0",
"chai-things": "0.2.0",
"clean-webpack-plugin": "3.0.0",
"compression-webpack-plugin": "6.1.1",
"copy-webpack-plugin": "6.0.2",
"cross-env": "5.2.1",
"css-loader": "6.5.1",
"dotenv": "6.2.0",
"es6-promise": "4.1.0",
"eslint": "7.16.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.24.0",
"expect": "1.20.2",
"explorer-fvt-utilities": "2.0.4",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.0",
"isomorphic-fetch": "3.0.0",
"mocha": "9.2.2",
"mocha-jenkins-reporter": "0.4.7",
"nock": "9.6.1",
"node-fetch-cjs": "3.2.1",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"redux-mock-store": "1.1.4",
"rewire": "2.5.2 ",
"rimraf": "3.0.2",
"selenium-webdriver": "4.0.0-alpha.1",
"sinon": "4.1.2",
"style-loader": "3.3.1",
"terser-webpack-plugin": "3.0.6",
"ts-node": "8.6.2",
"typescript": "3.7.5",
"url-loader": "4.1.1",
"webpack": "5.76.0",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.7.3"
},
"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/"
},
"description": "MVS Explorer",
"author": "IBM",
"license": "EPL-2.0",
"proxy": {
"target": "https://tvt5011.svl.ibm.com:7554"
}
}