forked from debezium/debezium-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.56 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
{
"name": "debezium-ui",
"port": 9000,
"version": "0.0.2",
"description": "An open source build scaffolding utility for web apps.",
"repository": "https://github.com/patternfly/patternfly-react-seed.git",
"homepage": "https://patternfly-react-seed.surge.sh",
"license": "MIT",
"private": true,
"scripts": {
"prebuild": "npm run type-check && npm run clean",
"dr:surge": "node dr-surge.js",
"build": "webpack --config webpack.prod.js && npm run dr:surge",
"start": "sirv dist --cors --single --host --port 8080",
"start:dev": "webpack serve --color --progress --config webpack.dev.js",
"start:prod": "node scripts/serve",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"eslint": "eslint --ext .tsx,.js ./src/",
"lint": "npm run eslint",
"format": "prettier --check --write ./src/**/*.{tsx,ts}",
"type-check": "tsc --noEmit",
"ci-checks": "npm run type-check && npm run lint && npm run test:coverage",
"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",
"clean": "rimraf dist",
"storybook": "start-storybook -p 6006",
"build:storybook": "build-storybook",
"prepare": "husky"
},
"devDependencies": {
"@redhat-cloud-services/eslint-config-redhat-cloud-services": "1.3.0",
"@storybook/addon-actions": "7.0.27",
"@storybook/addon-info": "5.3.21",
"@storybook/addon-knobs": "7.0.2",
"@storybook/addon-links": "7.0.27",
"@storybook/addons": "7.0.27",
"@storybook/react": "7.0.27",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.2.1",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.3",
"@types/lodash": "4.14.202",
"@types/react-router-dom": "5.3.3",
"@types/victory": "33.1.5",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.10.0",
"css-minimizer-webpack-plugin": "5.0.1",
"dotenv-webpack": "8.0.1",
"eslint": "8.56.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.6.0",
"husky": "9.0.10",
"imagemin": "8.0.1",
"jest": "29.6.1",
"jest-environment-jsdom": "29.6.1",
"mini-css-extract-plugin": "2.8.0",
"postcss": "8.4.34",
"prettier": "3.2.5",
"prop-types": "15.8.1",
"raw-loader": "4.0.2",
"react-axe": "3.5.4",
"react-docgen-typescript-loader": "3.7.2",
"react-router-dom": "6.19.0",
"regenerator-runtime": "0.14.1",
"rimraf": "5.0.5",
"style-loader": "3.3.4",
"svg-url-loader": "8.0.0",
"terser-webpack-plugin": "5.3.10",
"ts-jest": "29.1.2",
"ts-loader": "9.5.1",
"tsconfig-paths-webpack-plugin": "4.1.0",
"tslib": "2.6.2",
"typescript": "5.3.3",
"url-loader": "4.1.1",
"webpack": "5.90.1",
"webpack-bundle-analyzer": "4.10.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1",
"webpack-merge": "5.10.0"
},
"dependencies": {
"@patternfly/react-core": "5.2.0",
"@patternfly/react-icons": "5.2.0",
"@patternfly/react-styles": "5.2.0",
"@patternfly/react-table": "5.2.0",
"@storybook/builder-webpack5": "7.0.27",
"axios": "1.6.7",
"i": "0.3.7",
"lodash": "4.17.21",
"npm": "10.4.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-multi-ref": "1.0.1",
"serve-handler": "6.1.5",
"sirv-cli": "2.0.2"
}
}