teleport/package.json
Grzegorz Zdunek f797b864ac
Fix Connect for Intel Macs (#44383)
* Update `electron-builder@25.0.0`

* Remove `legacy` option

* Add patch for `electron-builder` that allows universal builds to work

* Remove packages patching

* `electron-builder@25.0.1`
2024-07-19 08:11:47 +00:00

101 lines
3.6 KiB
JSON

{
"name": "teleport-ui",
"version": "1.0.0",
"scripts": {
"build-ui": "yarn build-ui-oss && yarn build-ui-e",
"build-ui-oss": "yarn workspace @gravitational/teleport build",
"build-ui-e": "yarn workspace @gravitational/teleport.e build",
"build-wasm": "yarn workspace @gravitational/teleport build-wasm",
"start-teleport": "yarn workspace @gravitational/teleport start",
"start-teleport-e": "yarn workspace @gravitational/teleport.e start",
"build-term": "yarn workspace @gravitational/teleterm build",
"start-term": "yarn workspace @gravitational/teleterm start",
"package-term": "yarn workspace @gravitational/teleterm package",
"storybook": "start-storybook -p 9002 -c web/.storybook -s web/.storybook/public",
"storybook-smoke-test": "yarn storybook --ci --smoke-test",
"test": "jest",
"test-coverage": "jest --coverage && web/scripts/print-coverage-link.sh",
"test-update-snapshot": "yarn test --updateSnapshot",
"tdd": "jest --watch",
"lint": "yarn prettier-check && yarn eslint",
"lint-fix": "yarn prettier-write && yarn eslint --fix",
"eslint": "eslint --quiet '+(e|web)/**/*.{ts,tsx,js,jsx,mts}'",
"type-check": "NODE_OPTIONS='--max-old-space-size=4096' tsc",
"prettier-check": "yarn prettier --check '+(e|web)/**/*.{ts,tsx,js,jsx,mts}'",
"prettier-write": "yarn prettier --write --log-level silent '+(e|web)/**/*.{ts,tsx,js,jsx,mts}'",
"process-icons": "node web/packages/design/src/Icon/script/script.js & yarn prettier --loglevel silent --write 'web/packages/design/src/Icon/Icons/*.tsx'",
"nop": "exit 0"
},
"private": true,
"resolutions": {
"esbuild": "^0.20.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"**/d3-color": "^3.1.0",
"**/minimist": "^1.2.8",
"**/@types/react": "^18.2.39",
"**/@types/react-dom": "^18.2.17",
"**/trim": "0.0.3",
"webpack": "^5.88.2",
"x-default-browser": "^0.5.2"
},
"devDependencies": {
"@storybook/react": "^6.5.16",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-highlight": "^0.12.8",
"@types/react-router-dom": "^5.1.1",
"@types/react-transition-group": "^4.4.10",
"@types/wicg-file-system-access": "^2023.10.5",
"jest": "^29.7.0",
"jsdom-testing-mocks": "^1.13.0",
"msw": "^0.47.4",
"msw-storybook-addon": "^1.8.0",
"prettier": "^3.3.2",
"typescript": "^5.5.2",
"vite": "^5.3.2"
},
"dependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/lang-sql": "^6.7.0",
"@codemirror/view": "^6.17.0",
"@grpc/grpc-js": "1.10.10",
"@lezer/highlight": "^1.2.0",
"@nivo/bar": "^0.87.0",
"@protobuf-ts/runtime": "^2.9.4",
"@protobuf-ts/runtime-rpc": "^2.9.4",
"@stripe/react-stripe-js": "^1.16.5",
"@stripe/stripe-js": "^1.48.0",
"@uiw/codemirror-themes": "^4.22.2",
"@uiw/react-codemirror": "^4.22.2",
"d3-scale": "^4.0.2",
"d3-time-format": "^4.1.0",
"date-fns": "^2.28.0",
"history": "^4.9.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-day-picker": "^8.10.1",
"react-dom": "^18.3.1",
"react-highlight": "^0.15.0",
"react-is": "^18.3.1",
"react-router": "5.1.1",
"react-router-dom": "5.1.1",
"react-select": "^3.0.8",
"react-transition-group": "^4.4.5",
"styled-components": "^6.1.11",
"tslib": "^2.6.3",
"whatwg-fetch": "^3.6.20"
},
"workspaces": {
"packages": [
"web/packages/*",
"e/web/*"
]
}
}