forked from RedHatInsights/frontend-starter-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.26 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
{
"name": "frontend-starter-app",
"version": "1.1.0",
"private": false,
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"analyze": "NODE_ENV=production webpack --config config/prod.webpack.config.js --env analyze=true",
"build": "NODE_ENV=production webpack --config config/prod.webpack.config.js",
"deploy": "npm-run-all build lint test",
"lint": "npm-run-all lint:*",
"lint:js": "eslint config src",
"lint:js:fix": "eslint config src --fix",
"lint:sass": "stylelint 'src/**/*.scss' --config .stylelintrc.json",
"nightly": "npm run deploy",
"start": "webpack serve --config config/dev.webpack.config.js",
"start:beta": "BETA=true npm start",
"start:standalone": "STANDALONE=true npm start",
"test": "jest",
"verify": "npm-run-all build lint test"
},
"dependencies": {
"@patternfly/react-core": "4.135.0",
"@patternfly/react-table": "4.29.0",
"@redhat-cloud-services/frontend-components": "^3.3.3",
"@redhat-cloud-services/frontend-components-notifications": "^3.2.2",
"@redhat-cloud-services/frontend-components-utilities": "^3.2.4",
"classnames": "^2.3.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "7.2.4",
"react-router-dom": "5.2.0",
"redux": "4.1.0",
"redux-logger": "3.0.6",
"redux-promise-middleware": "6.1.2"
},
"devDependencies": {
"@babel/core": "7.14.0",
"@babel/plugin-proposal-object-rest-spread": "7.14.7",
"@babel/plugin-transform-runtime": "7.14.5",
"@babel/preset-env": "7.14.7",
"@babel/preset-react": "7.14.5",
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "^1.2.1",
"@redhat-cloud-services/frontend-components-config": "^4.3.5",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.2",
"babel-jest": "27.0.5",
"babel-plugin-transform-imports": "^2.0.0",
"enzyme": "3.11.0",
"enzyme-to-json": "3.6.2",
"eslint": "7.29.0",
"eslint-loader": "4.0.2",
"identity-obj-proxy": "3.0.0",
"jest": "27.0.5",
"npm-run-all": "4.1.5",
"prop-types": "15.7.2",
"stylelint": "13.13.1",
"stylelint-config-recommended-scss": "4.2.0",
"stylelint-scss": "3.19.0",
"webpack-bundle-analyzer": "4.4.2"
},
"insights": {
"appname": "starter"
}
}