-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.72 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 3.72 KB
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
{
"name": "guides",
"federatedModuleName": "guides",
"version": "0.0.1",
"description": "Guides for Red Hat OpenShift Streams for Apache Kafka",
"port": "9001",
"repository": "https://github.com/redhat-developer/app-services-guides.git",
"homepage": "https://console.redhat.com/application-services/openshift-streams",
"license": "MIT",
"private": true,
"devDependencies": {
"@webpack-cli/serve": "1.6.0",
"ajv": "8.6.2",
"asciidoctor": "2.2.5",
"assets-webpack-plugin": "7.1.1",
"copy-dir": "1.3.0",
"copy-webpack-plugin": "9.0.1",
"css-loader": "6.2.0",
"css-minimizer-webpack-plugin": "3.0.2",
"file-loader": "6.2.0",
"fs-extra": "10.0.0",
"gh-pages": "3.2.3",
"glob": "7.1.7",
"html-webpack-plugin": "5.3.2",
"jest": "^27.5.1",
"js-yaml": "4.1.0",
"jsdom": "17.0.0",
"jsonpath": "1.1.1",
"mini-css-extract-plugin": "2.2.1",
"mkdirp": "1.0.4",
"node-fetch": "2.6.1",
"node-wget": "0.4.3",
"npm-run-all": "4.1.5",
"null-loader": "4.0.1",
"optimize-css-assets-webpack-plugin": "6.0.1",
"raw-loader": "4.0.2",
"rimraf": "3.0.2",
"style-loader": "3.2.1",
"svg-url-loader": "7.1.1",
"sync-fetch": "0.3.0",
"terser-webpack-plugin": "5.2.0",
"ts-loader": "9.2.5",
"tsconfig-paths-webpack-plugin": "3.5.1",
"tslib": "2.3.1",
"typescript": "4.4.2",
"url-loader": "4.1.1",
"webpack": "5.51.1",
"webpack-bundle-analyzer": "4.4.2",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.2.1",
"webpack-merge": "5.8.0"
},
"scripts": {
"prebuild": "npm run clean",
"dr:surge": "node dr-surge.js",
"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",
"start": "webpack-cli serve",
"start:dev": "webpack serve --hot --color --progress --config webpack.dev.js",
"clean": "rimraf dist tmp && gh-pages-clean",
"commitandpush:modular-docs": "gh-pages -d ./tmp/post-splitter -b modular-docs",
"publish:modular-docs": "npm run generate:modular-docs-sources && npm run commitandpush:modular-docs",
"fetch:templates": "node ./utils/templates.js",
"fetch:splitter": "mvn org.apache.maven.plugins:maven-dependency-plugin:3.2.0:copy -Dartifact=io.github.lightguard.documentation:asciidoc-splitter:1.5.3:jar:jar-with-dependencies -DoutputDirectory=tmp/binaries/splitter",
"build:generated-assemblies": "asciidoctor --failure-level=WARN --template-dir=templates --destination-dir=tmp/generated/assemblies tmp/post-splitter/assemblies/assembly-*.adoc",
"build:generated-modules": "asciidoctor --failure-level=WARN --trace --template-dir=templates --destination-dir=tmp/generated/modules tmp/post-splitter/modules/*/*.adoc",
"generate:attributes": "node ./utils/attributes.js",
"generate:modular-docs-sources": "node ./utils/run-modular-docs.js",
"generate:modular-docs-output": "rimraf tmp/generated && mkdirp tmp/generated/assemblies tmp/generated/modules && npm-run-all build:generated-modules build:generated-assemblies",
"pregenerate:modular-docs": "npm-run-all --parallel fetch:*",
"generate:modular-docs": "npm-run-all generate:modular-docs-sources generate:modular-docs-output",
"test": "jest ./tests"
},
"dependencies": {
"@patternfly/quickstarts": "2.3.3",
"@patternfly/react-core": "4.135.0",
"@patternfly/transform-adoc": "0.1.3",
"@redhat-cloud-services/frontend-components-config": "6.11.2",
"@rhoas/app-services-ui-shared": "0.12.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"sync-request": "6.1.0",
"yaml": "1.10.2"
}
}