forked from rh-mobb/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "cloud-experts",
"version": "1.0.0",
"description": "Red Hat Cloud Experts Documentation",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "wireit",
"bundle": "wireit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rh-mobb/documentation.git"
},
"contributors": [
"Michael McNeill <[email protected]>",
"Kyle Buchanan <[email protected]>",
"Steven Spriggs <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/rh-mobb/documentation/issues"
},
"dependencies": {
"@patternfly/elements": "^2.4.0",
"@rhds/elements": "^1.3.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-import-css": "^3.3.1",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-terser": "^7.0.2",
"wireit": "^0.14.0"
},
"wireit": {
"start": {
"command": "hugo server --appendPort -D -b //localhost/experts/",
"dependencies": [
"bundle"
]
},
"bundle": {
"command": "rollup -c rollup.config.js"
}
}
}