-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.11 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.11 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
{
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "react-router build",
"dev": "react-router dev",
"test": "vitest --config test/vitest.config.ts",
"tsc": "tsc --noEmit",
"fmt": "prettier --write --ignore-path ./.gitignore .",
"fmt:check": "prettier --check --ignore-path ./.gitignore . ",
"e2ec": "npx playwright test --project=chrome",
"chromatic": "chromatic --playwright --exit-zero-on-changes",
"lint": "eslint ."
},
"dependencies": {
"@ariakit/react": "^0.4.18",
"@asciidoctor/core": "^3.0.4",
"@eslint/compat": "^1.4.0",
"@floating-ui/react": "^0.17.0",
"@leeoniya/ufuzzy": "^1.0.19",
"@meilisearch/instant-meilisearch": "^0.28.0",
"@oxide/design-system": "^3.1.0",
"@oxide/react-asciidoc": "^1.3.0",
"@oxide/remix-auth-rfd": "^0.1.3",
"@oxide/rfd.ts": "^0.14.1",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@react-router/fs-routes": "^7.13.2",
"@react-router/node": "^7.13.2",
"@react-router/serve": "^7.13.2",
"@tailwindcss/vite": "^4.1.13",
"@tanstack/react-query": "^5.90.2",
"@vercel/react-router": "^1.2.6",
"classnames": "^2.5.1",
"dayjs": "^1.11.18",
"highlight.js": "^11.11.1",
"html-entities": "^2.6.0",
"isbot": "^5",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"marked": "^16.3.0",
"mermaid": "^11.12.0",
"mime-types": "^3.0.1",
"mousetrap": "^1.6.5",
"octokit": "^5.0.3",
"react": "^19.2.2",
"react-dom": "^19.2.2",
"react-instantsearch": "^7.16.3",
"react-router": "^7.13.2",
"remeda": "^2.32.0",
"remix-auth": "^4.2.0",
"remix-auth-oauth2": "^3.4.1",
"shiki": "^3.13.0",
"simple-text-diff": "^1.7.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@chromatic-com/playwright": "^0.12.7",
"@csstools/postcss-global-data": "^3.1.0",
"@eslint/compat": "^1.4.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.0",
"@playwright/test": "^1.55.1",
"@react-router/dev": "^7.13.2",
"@tailwindcss/line-clamp": "^0.4.4",
"@types/d3": "^7.4.3",
"@types/express": "^5.0.3",
"@types/js-cookie": "^3.0.6",
"@types/jsdom": "^21.1.7",
"@types/jsonwebtoken": "^9.0.10",
"@types/lodash": "^4.17.20",
"@types/mime-types": "^3.0.1",
"@types/mousetrap": "^1.6.15",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-instantsearch-dom": "^6.12.9",
"autoprefixer": "^10.4.21",
"chromatic": "^13.2.0",
"cssnano": "^7.1.1",
"eslint": "^9.36.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-playwright": "^2.2.2",
"eslint-plugin-react-hooks": "^5.2.0",
"instantsearch.js": "^4.80.0",
"postcss": "^8.5.6",
"postcss-import": "^16.1.1",
"postcss-nesting": "^13.0.2",
"postcss-value-parser": "^4.2.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.13",
"typescript": "~5.9.2",
"typescript-eslint": "^8.44.1",
"vite": "^7.1.7",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=22"
}
}