forked from Apicurio/api-designer-poc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.52 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
{
"name": "api-designer-poc",
"version": "0.0.1",
"description": "The Red Hat OpenShift API Designer UI (POC)",
"main": "server.js",
"federatedModuleName": "api-designer-poc",
"repository": "https://github.com/apicurio/api-designer-poc.git",
"homepage": "https://cloud.redhat.com/application-services/api-designer",
"license": "Apache-2.0",
"private": true,
"scripts": {
"prebuild": "npm run clean",
"build": "webpack --config webpack.prod.js",
"start": "node server.js",
"start:dev": "webpack serve --hot --color --progress --config webpack.dev.js",
"type-check": "tsc --noEmit",
"ci-checks": "npm run type-check",
"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"
},
"devDependencies": {
"@types/react-router-dom": "5.3.3",
"@types/victory": "33.1.5",
"copy-webpack-plugin": "9.1.0",
"css-loader": "6.7.1",
"css-minimizer-webpack-plugin": "3.4.1",
"dotenv-webpack": "7.1.0",
"file-loader": "6.2.0",
"html-webpack-plugin": "5.5.0",
"i18next-parser": "5.4.0",
"imagemin": "8.0.1",
"mini-css-extract-plugin": "2.6.0",
"null-loader": "4.0.1",
"postcss": "8.4.12",
"postcss-loader": "6.2.1",
"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": "5.2.1",
"regenerator-runtime": "0.13.9",
"rimraf": "3.0.2",
"style-loader": "3.3.1",
"svg-url-loader": "7.1.1",
"terser-webpack-plugin": "5.3.1",
"ts-loader": "9.2.8",
"tsconfig-paths-webpack-plugin": "3.5.2",
"tslib": "2.3.1",
"typescript": "4.6.3",
"url-loader": "4.1.1",
"webpack": "5.70.0",
"webpack-bundle-analyzer": "4.5.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.7.4",
"webpack-merge": "5.8.0"
},
"dependencies": {
"@patternfly/patternfly": "4.164.2",
"@patternfly/quickstarts": "1.2.2",
"@patternfly/react-core": "4.152.4",
"@patternfly/react-icons": "4.11.14",
"@patternfly/react-styles": "4.11.13",
"@patternfly/react-table": "4.29.58",
"@redhat-cloud-services/frontend-components-config": "4.6.6",
"@rhoas/app-services-ui-shared": "0.15.4",
"date-fns": "2.28.0",
"dayjs": "1.11.0",
"keycloak-js": "^14.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-last-location": "2.0.1",
"sirv-cli": "1.0.14"
}
}