-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.9 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.9 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
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
118
119
120
121
122
123
124
125
126
{
"name": "oxide",
"type": "module",
"version": "0.0.0",
"license": "MPL-2.0",
"engines": {
"node": ">=22"
},
"scripts": {
"start": "API_MODE=msw vite",
"start:msw": "API_MODE=msw vite",
"start:nexus": "API_MODE=nexus vite",
"start:dogfood": "API_MODE=remote EXT_HOST=oxide.sys.rack2.eng.oxide.computer vite",
"start:colo": "API_MODE=remote EXT_HOST=oxide.sys.r3.oxide-preview.com vite",
"preview": "API_MODE=msw npm run build && cp mockServiceWorker.js dist/ && vite preview",
"dev": "API_MODE=msw vite",
"start:mock-api": "tsx ./tools/start_mock_api.ts",
"build": "vite build",
"ci": "npm run tsc && npm run lint && npm run fmt:check && npm run test run && npm run e2ec",
"tsc": "tsgo",
"test": "NODE_OPTIONS='--no-deprecation' vitest",
"update-snapshots": "npm test run -- -u",
"e2e": "playwright test",
"e2ec": "playwright test --project=chrome",
"visual:baseline": "./tools/generate-visual-baseline.sh",
"visual:compare": "playwright test -c playwright.visual.config.ts",
"lint": "oxlint --type-aware",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"openapi-gen-ts": "openapi-gen-ts",
"gen-api": "./tools/generate_api_client.sh",
"postinstall": "patch-package",
"prepare": "husky"
},
"private": true,
"dependencies": {
"@base-ui/react": "^1.1.0",
"@floating-ui/react": "^0.26.23",
"@headlessui/react": "^2.2.9",
"@oxide/design-system": "5.0.0--canary.163.22682420553.0",
"@react-aria/live-announcer": "^3.3.4",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/vite": "^4.1.17",
"@tanstack/react-query": "^5.90.7",
"@tanstack/react-query-devtools": "^5.90.2",
"@tanstack/react-table": "^8.20.5",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"classnames": "^2.5.1",
"date-fns": "^3.6.0",
"filesize": "^10.1.6",
"lodash.throttle": "^4.1.1",
"match-sorter": "^6.3.4",
"md5": "^2.3.0",
"motion": "^11.16.2",
"mousetrap": "^1.6.5",
"p-map": "^7.0.2",
"p-retry": "^6.2.0",
"react": "^19.2.0",
"react-aria": "^3.44.0",
"react-dom": "^19.2.0",
"react-error-boundary": "^4.0.13",
"react-hook-form": "^7.53.0",
"react-is": "^19.2.0",
"react-merge-refs": "^2.1.1",
"react-router": "^7.13.0",
"react-stately": "^3.32.2",
"recharts": "^2.15.1",
"remeda": "^2.30.0",
"semver": "^7.7.3",
"simplebar-react": "^3.2.6",
"ts-pattern": "^5.8.0",
"tslib": "^2.7.0",
"tunnel-rat": "^0.1.2",
"use-debounce": "^10.0.4",
"uuid": "^10.0.0",
"zod": "^4.0.17",
"zustand": "^5.0.3"
},
"devDependencies": {
"@mswjs/http-middleware": "^0.10.3",
"@oxide/openapi-gen-ts": "~0.14.0",
"@playwright/test": "^1.58.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/lodash.throttle": "^4.1.9",
"@types/md5": "^2.3.5",
"@types/mousetrap": "^1.6.15",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/react-is": "^19.2.0",
"@types/semver": "^7.7.1",
"@types/uuid": "^10.0.0",
"@typescript/native-preview": "^7.0.0-dev.20260212.1",
"@vitejs/plugin-basic-ssl": "^2.1.0",
"@vitejs/plugin-react-swc": "^4.2.1",
"autoprefixer": "^10.4.20",
"eslint-plugin-playwright": "^2.3.0",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"ip-num": "^1.5.1",
"jsdom": "^25.0.1",
"msw": "^2.7.5",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"oxlint-tsgolint": "^0.14.2",
"patch-package": "^8.0.0",
"resize-observer-polyfill": "^1.5.1",
"tailwindcss": "^4.1.18",
"tsx": "^4.19.2",
"type-fest": "^5.2.0",
"typescript": "~5.9.2",
"vite": "^7.2.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.8"
},
"browserslist": [
"defaults"
],
"msw": {
"workerDirectory": [
""
]
}
}