|
1 | 1 | {
|
2 |
| - "name": "cloud-image-directory", |
3 |
| - "version": "0.0.1", |
4 |
| - "description": "A web portal for locating RHEL cloud images for public cloud providers.", |
5 |
| - "repository": "https://github.com/redhatcloudx/cloud-image-directory-frontend", |
6 |
| - "homepage": "", |
7 |
| - "license": "MIT", |
8 |
| - "private": true, |
9 |
| - "scripts": { |
10 |
| - "prebuild": "npm run clean", |
11 |
| - "dr:surge": "node dr-surge.js", |
12 |
| - "build": "webpack --config webpack.prod.js && npm run dr:surge", |
13 |
| - "start": "sirv dist --cors --single --host --port 8080", |
14 |
| - "start:dev": "webpack serve --color --progress --stats-error-details --config webpack.dev.js", |
15 |
| - "test": "jest --watch", |
16 |
| - "test:coverage": "jest --coverage", |
17 |
| - "eslint": "eslint --ext .tsx,.js ./src/", |
18 |
| - "lint": "npm run eslint", |
19 |
| - "format": "prettier --check --write ./src/**/*.{tsx,ts}", |
20 |
| - "type-check": "tsc --noEmit", |
21 |
| - "ci-checks": "npm run type-check && npm run lint && npm run test:coverage", |
22 |
| - "build:bundle-profile": "webpack --config webpack.prod.js --profile --json > stats.json", |
23 |
| - "bundle-profile:analyze": "npm run build:bundle-profile && webpack-bundle-analyzer ./stats.json", |
24 |
| - "clean": "rimraf dist" |
| 2 | + "dependencies": { |
| 3 | + "@patternfly/react-core": "^4.181.1", |
| 4 | + "@patternfly/react-icons": "^4.32.1", |
| 5 | + "@patternfly/react-table": "^4.93.1", |
| 6 | + "react": "^18.2.0", |
| 7 | + "react-dom": "^18.2.0", |
| 8 | + "react-router-dom-last-location": "^0.2.0", |
| 9 | + "regenerator-runtime": "^0.13.11", |
| 10 | + "sirv-cli": "^2.0.0" |
25 | 11 | },
|
| 12 | + "description": "A web portal for locating RHEL cloud images for public cloud providers.", |
26 | 13 | "devDependencies": {
|
27 | 14 | "@babel/preset-typescript": "^7.21.0",
|
28 | 15 | "@testing-library/jest-dom": "^5.16.5",
|
|
77 | 64 | "webpack-dev-server": "^4.13.1",
|
78 | 65 | "webpack-merge": "^5.8.0"
|
79 | 66 | },
|
80 |
| - "dependencies": { |
81 |
| - "@patternfly/react-core": "^4.181.1", |
82 |
| - "@patternfly/react-icons": "^4.32.1", |
83 |
| - "@patternfly/react-table": "^4.93.1", |
84 |
| - "react": "^18.2.0", |
85 |
| - "react-dom": "^18.2.0", |
86 |
| - "react-router-dom-last-location": "^0.2.0", |
87 |
| - "regenerator-runtime": "^0.13.11", |
88 |
| - "sirv-cli": "^2.0.0" |
89 |
| - } |
| 67 | + "homepage": "", |
| 68 | + "license": "MIT", |
| 69 | + "name": "cloud-image-directory", |
| 70 | + "private": true, |
| 71 | + "repository": "https://github.com/redhatcloudx/cloud-image-directory-frontend", |
| 72 | + "scripts": { |
| 73 | + "build": "webpack --config webpack.prod.js && npm run dr:surge", |
| 74 | + "build:bundle-profile": "webpack --config webpack.prod.js --profile --json > stats.json", |
| 75 | + "bundle-profile:analyze": "npm run build:bundle-profile && webpack-bundle-analyzer ./stats.json", |
| 76 | + "ci-checks": "npm run type-check && npm run lint && npm run test:coverage", |
| 77 | + "clean": "rimraf dist", |
| 78 | + "dr:surge": "node dr-surge.js", |
| 79 | + "eslint": "eslint --ext .tsx,.js ./src/", |
| 80 | + "format": "prettier --check --write ./src/**/*.{tsx,ts}", |
| 81 | + "lint": "npm run eslint", |
| 82 | + "prebuild": "npm run clean", |
| 83 | + "start": "sirv dist --cors --single --host --port 8080", |
| 84 | + "start:dev": "webpack serve --color --progress --stats-error-details --config webpack.dev.js", |
| 85 | + "test": "jest --watch", |
| 86 | + "test:coverage": "jest --coverage", |
| 87 | + "type-check": "tsc --noEmit" |
| 88 | + }, |
| 89 | + "version": "0.0.1" |
90 | 90 | }
|
0 commit comments