-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.98 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.98 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
{
"name": "quickstarts-preview",
"displayName": "quickstarts-preview",
"description": "Quick start preview",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/patternfly/patternfly-quickstarts.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/patternfly/patternfly-quickstarts/issues"
},
"homepage": "https://github.com/patternfly/patternfly-quickstarts#readme",
"publisher": "PatternFly",
"engines": {
"vscode": "^1.29.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.qsPreview"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.qsPreview",
"title": "Quick Starts: Preview"
}
]
},
"scripts": {
"clean": "rm -rf out && rm -rf quickstartsPreview",
"vscode:prepublish": "npm run prod:compile",
"prod:compile": "npm run clean && npm-run-all prod:compile:*",
"dev:compile": "npm run clean && npm-run-all dev:compile:*",
"watch": "npm-run-all -p watch:*",
"dev:compile:extension": "tsc -p ./",
"dev:compile:views": "webpack --mode development",
"prod:compile:extension": "tsc -p ./",
"prod:compile:views": "webpack --mode production",
"watch:extension": "tsc -watch -p ./",
"watch:views": "webpack --watch --mode development"
},
"devDependencies": {
"@types/js-yaml": "^4.0.0",
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"@types/react": "^18.2.79",
"css-loader": "^6.7.3",
"npm-run-all": "^4.1.5",
"null-loader": "^4.0.1",
"style-loader": "^3.3.2",
"ts-loader": "^9.4.2",
"tslint": "^6.1.3",
"vscode": "^1.1.37",
"webpack": "^5.83.0",
"webpack-cli": "^5.1.1"
},
"dependencies": {
"@cloudmosaic/quickstarts": "^0.0.15",
"@patternfly/patternfly": "^6.3.1",
"i18next-parser": "^9.3.0",
"js-base64": "^3.6.0",
"js-yaml": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}