-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
59 lines (59 loc) · 1.96 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
{
"name": "cockpit-composer",
"type": "module",
"private": true,
"engines": {
"node": ">=6",
"npm": ">=5.0"
},
"dependencies": {
"@data-driven-forms/pf4-component-mapper": "3.20.9",
"@data-driven-forms/react-form-renderer": "3.20.9",
"@patternfly/patternfly": "4.224.2",
"@patternfly/react-core": "4.267.6",
"@patternfly/react-icons": "4.93.6",
"@patternfly/react-table": "4.113.0",
"@reduxjs/toolkit": "1.9.5",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-intl": "6.6.2",
"react-redux": "8.1.2",
"react-router-dom": "6.22.2",
"uuid": "9.0.1"
},
"devDependencies": {
"@babel/cli": "7.23.9",
"@babel/core": "7.24.0",
"@babel/preset-env": "7.24.6",
"@babel/preset-react": "7.23.3",
"@formatjs/cli": "6.1.3",
"babel-loader": "9.1.3",
"babel-plugin-formatjs": "10.5.13",
"css-loader": "6.10.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.33.2",
"glob": "11.0.0",
"mini-css-extract-plugin": "2.8.0",
"prettier": "2.8.8",
"sass": "1.77.4",
"sass-loader": "14.1.1",
"sizzle": "2.3.10",
"webpack": "5.90.3",
"webpack-cli": "5.0.2"
},
"scripts": {
"lint": "eslint src",
"lint:fix": "npm run lint --fix",
"prettier": "prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"translations:extract": "formatjs extract 'src/**/*.js' --out-file translations/en.json --id-interpolation-pattern '[sha512:contenthash:base64:6]' --format simple",
"translations:compile": "formatjs compile-folder translations translations/compiled --ast --format simple",
"build:dev": "webpack --config webpack.config.js",
"build:prod": "npm run translations:extract && npm run translations:compile && npm run build:dev",
"watch": "npm run build:dev -- --watch"
}
}