-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
145 lines (145 loc) · 4.49 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "oxide",
"type": "module",
"version": "0.0.0",
"license": "MPL-2.0",
"engines": {
"node": ">=18"
},
"scripts": {
"start": "API_MODE=msw vite",
"start:msw": "API_MODE=msw vite",
"start:nexus": "API_MODE=nexus vite",
"start:dogfood": "API_MODE=dogfood 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 test run && npm run e2ec",
"tsc": "tsc",
"test": "NODE_OPTIONS='--no-deprecation' vitest",
"update-snapshots": "npm test run -- -u",
"e2e": "playwright test",
"e2ec": "playwright test --project=chrome",
"lint": "eslint --ext .js,.ts,.tsx app test mock-api",
"lint-fast": "npm run lint -- --cache",
"fmt": "prettier --cache --write . && npm run lint -- --fix",
"openapi-gen-ts": "openapi-gen-ts",
"prettier": "prettier",
"gen-api": "./tools/generate_api_client.sh",
"ladle": "IS_LADLE=1 ladle serve",
"build:ladle": "IS_LADLE=1 ladle build",
"postinstall": "patch-package",
"prepare": "husky"
},
"private": true,
"dependencies": {
"@floating-ui/react": "^0.26.23",
"@headlessui/react": "^2.1.8",
"@oxide/design-system": "^1.6.1",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-focus-guards": "1.0.1",
"@radix-ui/react-tabs": "^1.1.0",
"@react-aria/live-announcer": "^3.3.4",
"@react-spring/web": "^9.7.4",
"@tanstack/react-query": "^5.56.2",
"@tanstack/react-query-devtools": "^5.56.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",
"mousetrap": "^1.6.5",
"p-map": "^7.0.2",
"p-retry": "^6.2.0",
"react": "^18.3.1",
"react-aria": "^3.34.3",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-hook-form": "^7.53.0",
"react-is": "^18.3.1",
"react-merge-refs": "^2.1.1",
"react-remove-scroll": "2.5.5",
"react-router-dom": "^6.26.2",
"react-stately": "^3.32.2",
"recharts": "^2.12.7",
"remeda": "^2.14.0",
"simplebar-react": "^3.2.6",
"tslib": "^2.7.0",
"tunnel-rat": "0.0.4",
"uuid": "^10.0.0",
"zod": "^3.23.8",
"zustand": "^4.5.5"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@ladle/react": "^4.1.0",
"@mswjs/http-middleware": "^0.10.2",
"@oxide/openapi-gen-ts": "~0.5.0",
"@playwright/test": "^1.49.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/lodash.throttle": "^4.1.9",
"@types/md5": "^2.3.5",
"@types/mousetrap": "^1.6.15",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-is": "^18.3.0",
"@types/semver": "^7.5.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "~8.5.0",
"@typescript-eslint/parser": "~8.5.0",
"@vitejs/plugin-basic-ssl": "^1.1.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-playwright": "^1.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hook-form": "^0.3.0",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.6",
"identity-obj-proxy": "^3.0.0",
"ip-num": "^1.5.1",
"jsdom": "^25.0.0",
"lint-staged": "^15.2.10",
"msw": "^2.6.2",
"patch-package": "^8.0.0",
"postcss": "^8.4.35",
"postcss-import": "^16.1.0",
"postcss-nesting": "^13.0.0",
"postcss-pseudo-classes": "^0.4.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"resize-observer-polyfill": "^1.5.1",
"semver": "^7.6.3",
"tailwindcss": "^3.4.11",
"tsx": "^4.19.1",
"type-fest": "^4.26.1",
"typescript": "~5.7.0",
"vite": "^5.4.8",
"vite-plugin-html": "^3.2.2",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.2"
},
"browserslist": [
"defaults"
],
"msw": {
"workerDirectory": [
""
]
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix"
}
}