-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
104 lines (104 loc) · 3.8 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
{
"name": "ovirt-engine-ui-extensions",
"version": "1.3.7",
"description": "UI plugin that provides various extensions to oVirt administration UI, such as dashboard, migrate vm, and cluster upgrade",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://gerrit.ovirt.org/ovirt-engine-ui-extensions"
},
"scripts": {
"build": "yarn test && NODE_ENV=production webpack --config webpack.prod.js",
"build:analyze": "NODE_ENV=production Q=1 webpack --progress --config webpack.prod.js --profile --json > stats.json && webpack-bundle-analyzer ./stats.json",
"dev": "NODE_ENV=development webpack --progress --config webpack.dev.js",
"dev:analyze": "NODE_ENV=development Q=1 webpack --progress --config webpack.dev.js --profile --json > stats.json && webpack-bundle-analyzer ./stats.json",
"dev:watch": "yarn dev --watch",
"intl:extract": "node zanata/extract-translations.js && rip json2pot 'extra/messages/**/*.json' -o 'extra/messages/messages.pot'",
"intl:push": "zanata/zanata-push.sh",
"intl:pull": "zanata/zanata-pull.sh",
"intl:apply": "rip po2json 'extra/messages/po/messages.*.po' -m 'extra/messages/**/*.json' -o 'src/intl/translations.json'",
"intl:normalize": "node zanata/normalize-translations.js",
"intl:report": "node zanata/report.js",
"intl:sync": "node zanata/sync-messages.js",
"lint": "eslint . --ext js,jsx",
"test": "yarn lint && NODE_ENV=test jest --no-watch",
"test:watch": "NODE_ENV=test jest --watch"
},
"dependencies": {
"@patternfly/patternfly": "^4.196.7",
"@patternfly/react-charts": "^6.74.3",
"@patternfly/react-core": "^4.221.3",
"@patternfly/react-icons": "^4.72.3",
"@patternfly/react-table": "^4.90.3",
"classnames": "^2.2.3",
"core-js": "^3.1.4",
"css-element-queries": "^1.2.3",
"d3-scale": "^4.0.2",
"intl": "^1.2.4",
"intl-messageformat": "9.9.4",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"prop-types": "^15.6.0",
"react": "~17.0.0",
"react-dom": "~17.0.0",
"usehooks-ts": "^2.6.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/eslint-plugin": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"@formatjs/icu-messageformat-parser": "2.0.14",
"@testing-library/react-hooks": "^8.0.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.5",
"camelcase": "^6.2.0",
"chalk": "^2.4.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"enzyme": "^3.11.0",
"eslint": "^7.29.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-jsx": "^10.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^5.0.0",
"fs-extra": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"isomorphic-git": "^1.8.2",
"jest": "^25.5.3",
"json-stable-stringify": "^1.0.1",
"mini-css-extract-plugin": "^2.6.1",
"react-intl-po": "2.2.2",
"react-test-renderer": "~17.0.0",
"style-loader": "^3.3.1",
"table": "^5.4.6",
"terser-webpack-plugin": "^5.3.3",
"webpack": "^5.73.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"resolutions": {
"path-parse": "^1.0.7",
"underscore": "1.13.1",
"ansi-regex": "5.0.1"
},
"browserslist": [
">1%",
"last 2 Chrome versions",
"last 2 Edge versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"Firefox ESR",
"not ie > 0",
"not dead"
]
}