forked from redhatcloudx/cloud-image-directory-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.21 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
{
"dependencies": {
"@patternfly/react-core": "^4.181.1",
"@patternfly/react-icons": "^4.32.1",
"@patternfly/react-table": "^4.93.1",
"cross-fetch": "^3.1.6",
"fuzzysort": "^2.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-router-dom-last-location": "^0.2.0",
"regenerator-runtime": "^0.13.11",
"sirv-cli": "^2.0.0"
},
"description": "A web portal for locating RHEL cloud images for public cloud providers.",
"devDependencies": {
"@babel/preset-typescript": "^7.21.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/enzyme": "^3.10.13",
"@types/jest": "^29.5.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-router-dom": "^5.1.7",
"@types/victory": "^35.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"dotenv-webpack": "^8.0.0",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"eslint": "^8.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.5.3",
"imagemin": "^8.0.1",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.5.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.21",
"prettier": "^2.8.8",
"prop-types": "^15.8.1",
"react-axe": "^3.5.4",
"react-router-dom": "^6.6.2",
"react-spa-prerender": "^1.0.14",
"regenerator-runtime": "^0.13.11",
"rimraf": "^5.0.1",
"sass": "^1.60.0",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.3",
"svg-url-loader": "^8.0.0",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.3",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"tslib": "^2.5.0",
"typescript": "^4.3.2",
"typings-for-css-modules-loader": "^0.1.1",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1",
"webpack-merge": "^5.8.0"
},
"homepage": "",
"license": "MIT",
"name": "cloud-image-directory",
"private": true,
"repository": "https://github.com/redhatcloudx/cloud-image-directory-frontend",
"scripts": {
"build": "webpack --config webpack.prod.js && npm run dr:surge",
"build:bundle-profile": "webpack --config webpack.prod.js --profile --json > stats.json",
"bundle-profile:analyze": "npm run build:bundle-profile && webpack-bundle-analyzer ./stats.json",
"ci-checks": "npm run type-check && npm run lint && npm run test:coverage",
"clean": "rimraf dist",
"dr:surge": "node dr-surge.js",
"eslint": "eslint --ext .tsx,.js ./src/",
"format": "prettier --check --write ./src/**/*.{tsx,ts}",
"lint": "npm run eslint",
"prebuild": "npm run clean",
"start": "sirv dist --cors --single --host --port 8080",
"start:dev": "webpack serve --color --progress --stats-error-details --config webpack.dev.js",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"type-check": "tsc --noEmit"
},
"version": "0.0.1"
}