-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
117 lines (117 loc) · 3.57 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "ui-builder",
"displayName": "ui-builder",
"description": "PatternFly UI Builder",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/patternfly-labs/ui-builder.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/patternfly-labs/ui-builder/issues"
},
"homepage": "https://github.com/patternfly-labs/ui-builder",
"publisher": "PatternFly",
"engines": {
"vscode": "^1.29.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.uiBuilder"
],
"main": "./dist/extension.js",
"browser": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "extension.uiBuilder",
"title": "UI Builder"
}
]
},
"scripts": {
"clean": "rm -rf out && rm -rf uiBuilder",
"build:all": "npm run clean && npm run build:ui && npm run build:vs",
"build:vs": "rm -rf out && npm run dev:compile",
"build:ui": "rm -rf uiBuilder && webpack --mode=production",
"start:ui": "webpack serve",
"prod:compile": "npm run clean && npm-run-all prod:compile:*",
"dev:compile": "npm-run-all dev:compile:*",
"watch": "npm-run-all -p watch:*",
"dev:compile:extension": "tsc -p ./",
"prod:compile:extension": "tsc -p ./",
"watch:extension": "tsc -watch -p ./",
"sub:pull": "git submodule update --init --recursive",
"sub:update": "git submodule update --remote --merge",
"vscode:prepublish": "npm run build:web",
"build:web": "rm -rf dist && npx webpack --mode production --config webpack.browser.config.js",
"test:web": "npx vscode-test-web --browserType=chromium --extensionDevelopmentPath=. ./test-data"
},
"dependencies": {
"@babel/parser": "7.9.4",
"@patternfly/ast-helpers": "^0.0.5",
"@patternfly/patternfly": "4.144.4",
"@patternfly/react-code-editor": "4.3.84",
"@patternfly/react-core": "4.162.2",
"@patternfly/react-table": "4.31.7",
"acorn": "8.4.1",
"acorn-class-fields": "1.0.0",
"acorn-jsx": "5.3.2",
"acorn-static-class-features": "1.0.0",
"assert": "^2.0.0",
"astring": "^1.7.5",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"codesandbox": "^2.1.10",
"crypto-browserify": "^3.12.0",
"gists": "^2.0.0",
"https-browserify": "^1.0.0",
"js-base64": "^3.6.0",
"monaco-editor": "~0.21.0",
"monaco-editor-webpack-plugin": "^2.1.0",
"path-browserify": "^1.0.1",
"prettier": "2.0.4",
"process": "^0.11.10",
"raw-loader": "^4.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-monaco-editor": "^0.41.2",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"unique-selector": "^0.5.0",
"util": "^0.12.4"
},
"devDependencies": {
"@babel/preset-react": "^7.14.5",
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@types/vscode": "^1.29.0",
"@vscode/test-web": "^0.0.15",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"mini-css-extract-plugin": "^2.1.0",
"npm-run-all": "^4.1.5",
"null-loader": "^4.0.1",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"raw-loader": "^4.0.2",
"react-docgen": "5.3.1",
"style-loader": "^2.0.0",
"ts-loader": "^9.2.5",
"tslint": "^6.1.3",
"typescript": "^4.3.5",
"url-loader": "^4.1.1",
"vscode": "^1.1.37",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^3.11.2"
}
}