-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
package.json
105 lines (105 loc) · 3.98 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
{
"name": "teleport-ui",
"version": "1.0.0",
"scripts": {
"build-ui": "pnpm build-ui-oss && pnpm build-ui-e",
"build-ui-oss": "pnpm --filter=@gravitational/teleport build",
"build-ui-e": "pnpm --filter=@gravitational/teleport.e build",
"build-wasm": "pnpm --filter=@gravitational/teleport build-wasm",
"start-teleport": "pnpm --filter=@gravitational/teleport start",
"start-teleport-e": "pnpm --filter=@gravitational/teleport.e start",
"build-term": "pnpm --filter=@gravitational/teleterm build",
"start-term": "pnpm --filter=@gravitational/teleterm start",
"package-term": "pnpm --filter=@gravitational/teleterm package",
"storybook": "./web/scripts/run-storybook.sh",
"storybook-smoke-test": "storybook dev -p 9002 -c web/.storybook --ci --smoke-test",
"test-storybook": "NODE_TLS_REJECT_UNAUTHORIZED=0 test-storybook -c web/.storybook --url https://localhost:9002 --skipTags=skip-test --browsers=chromium",
"test": "jest",
"test-coverage": "jest --coverage && web/scripts/print-coverage-link.sh",
"test-update-snapshot": "pnpm run test --updateSnapshot",
"tdd": "jest --watch",
"lint": "pnpm eslint && pnpm prettier-check",
"lint-fix": "pnpm eslint --fix && pnpm prettier-write",
"eslint": "eslint --quiet '+(e|web)/**/*.{ts,tsx,js,jsx,mts}'",
"type-check": "NODE_OPTIONS='--max-old-space-size=4096' tsc --build",
"prettier-check": "prettier --check '+(e|web)/**/*.{ts,tsx,js,jsx,mts}'",
"prettier-write": "prettier --write --log-level silent '+(e|web)/**/*.{ts,tsx,js,jsx,mts}'",
"process-icons": "node web/packages/design/src/Icon/script/script.js & pnpm prettier --loglevel silent --write 'web/packages/design/src/Icon/Icons/*.tsx'",
"nop": "exit 0"
},
"private": true,
"pnpm": {
"overrides": {
"jsdom@^20.0.3>nwsapi@^2.2.0": "2.2.9"
}
},
"devDependencies": {
"@gravitational/build": "workspace:*",
"@storybook/addon-actions": "^8.4.6",
"@storybook/addon-controls": "^8.4.6",
"@storybook/addon-toolbars": "^8.4.6",
"@storybook/components": "^8.4.6",
"@storybook/preview-api": "^8.4.6",
"@storybook/react": "^8.4.6",
"@storybook/react-vite": "^8.4.6",
"@storybook/test-runner": "^0.20.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/history": "^4.7.11",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.9",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/react-highlight": "^0.12.8",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.1.1",
"@types/react-transition-group": "^4.4.11",
"@types/wicg-file-system-access": "^2023.10.5",
"jest": "^29.7.0",
"jsdom-testing-mocks": "^1.13.1",
"msw": "^2.6.6",
"msw-storybook-addon": "^2.0.4",
"playwright": "^1.49.0",
"prettier": "^3.4.1",
"react-select-event": "^5.5.1",
"storybook": "^8.4.6",
"typescript": "^5.7.2",
"vite": "^5.4.8"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.3",
"@codemirror/lang-sql": "^6.8.0",
"@codemirror/view": "^6.35.0",
"@grpc/grpc-js": "1.12.2",
"@lezer/highlight": "^1.2.1",
"@nivo/bar": "^0.88.0",
"@protobuf-ts/runtime": "^2.9.4",
"@protobuf-ts/runtime-rpc": "^2.9.4",
"@uiw/codemirror-themes": "^4.23.6",
"@uiw/react-codemirror": "^4.23.6",
"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.3.4",
"react-router-dom": "5.3.4",
"react-select": "^5.8.3",
"react-transition-group": "^4.4.5",
"styled-components": "^6.1.13",
"tslib": "^2.8.1",
"whatwg-fetch": "^3.6.20"
},
"msw": {
"workerDirectory": [
"web/.storybook/public"
]
},
"packageManager": "[email protected]"
}