-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.58 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.58 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
{
"name": "patternfly-java-showcase",
"private": true,
"parcelIgnore": [
"showcase.js"
],
"source": [
"src/web/dev.html",
"src/web/index.html"
],
"scripts": {
"start:parcel": "parcel watch src/web/dev.html --dist-dir target/showcase --port 1235 --watch-dir ..",
"start:server": "node server.js 1234 1235",
"open:browser": "wait-on http://localhost:1234 && open http://localhost:1234",
"watch": "concurrently \"pnpm run start:parcel\" \"pnpm run start:server\" \"pnpm run open:browser\"",
"prod": "parcel build src/web/index.html src/web/404.html --dist-dir target/showcase",
"http-server": "http-server target/showcase --ssl --cert cert.pem",
"images:clean": "rm -rf src/web/images/*",
"images:download": "node images.js"
},
"dependencies": {
"@github/relative-time-element": "^5.0.0",
"@patternfly/patternfly": "^6.4.0",
"highlight.js": "^11.11.1"
},
"devDependencies": {
"@parcel/config-default": "^2.16.4",
"@parcel/core": "^2.16.4",
"@parcel/reporter-cli": "^2.16.4",
"@parcel/resolver-glob": "^2.16.4",
"@parcel/transformer-css": "^2.16.4",
"basic-ftp": "^5.2.2",
"concurrently": "^9.2.1",
"express": "^5.2.1",
"http-proxy-middleware": "^3.0.5",
"http-server": "^14.1.1",
"open": "^11.0.0",
"parcel": "^2.16.4",
"parcel-resolver-ignore": "^2.2.1",
"puppeteer": "^24.40.0",
"wait-on": "^9.0.5"
},
"packageManager": "[email protected]+sha512.91f84a392eea348ea4852a182912d2520273a4336f933b78cc44bc931eb999923c097e9433a9b355adc1f725725ea99082fc9f032a559df832632e764c92c798"
}