teleport/package.json
Jeff Pihach 34f102bdeb
Enable building teleport with the new UI location (#20361)
* Changes for merging webapps into teleport.
2023-01-18 22:22:25 +00:00

37 lines
1.4 KiB
JSON

{
"name": "teleport-ui",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build-ui": "yarn build-ui-oss && yarn build-ui-e",
"build-ui-oss": "yarn workspace @gravitational/teleport build --output-path=../../../webassets/teleport/app",
"build-ui-e": "yarn workspace @gravitational/teleport.e build --output-path=../../../webassets/e/teleport/app",
"build-teleport": "yarn workspace @gravitational/namespaces build-teleport",
"start-teleport": "yarn workspace @gravitational/namespaces start-teleport",
"build-term": "yarn workspace @gravitational/namespaces build-term",
"start-term": "yarn workspace @gravitational/namespaces start-term",
"package-term": "yarn workspace @gravitational/namespaces package-term",
"build-native-deps-for-term": "yarn workspace @gravitational/namespaces build-native-deps-for-term",
"build-and-package-term-ci": "yarn workspace @gravitational/namespaces build-and-package-term-ci",
"test": "yarn workspace @gravitational/namespaces test",
"type-check": "yarn workspace @gravitational/namespaces type-check"
},
"private": true,
"resolutions": {
"react": "16.14.0",
"**/minimist": "^1.2.5",
"**/@types/react": "^16.8.19"
},
"workspaces": {
"packages": [
"web",
"web/packages/build/**",
"web/packages/design/**",
"web/packages/shared/**",
"web/packages/teleport",
"web/packages/teleterm",
"e/web/**"
]
}
}