-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
88 lines (88 loc) · 2.62 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
{
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite: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",
"lint": "eslint app"
},
"dependencies": {
"@ariakit/react": "^0.3.5",
"@asciidoctor/core": "^3.0.4",
"@floating-ui/react": "^0.17.0",
"@meilisearch/instant-meilisearch": "^0.8.2",
"@oxide/design-system": "^2.2.0",
"@oxide/react-asciidoc": "^1.0.3",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@remix-run/node": "2.13.1",
"@remix-run/react": "2.13.1",
"@remix-run/serve": "2.13.1",
"@tanstack/react-query": "^4.3.9",
"@vercel/remix": "^2.13.1",
"classnames": "^2.3.1",
"dayjs": "^1.11.7",
"fuzzysort": "^2.0.1",
"highlight.js": "^11.6.0",
"html-entities": "^2.4.0",
"isbot": "^4",
"lodash": "^4.17.21",
"marked": "^4.2.5",
"mermaid": "^11.4.1",
"mime-types": "^2.1.35",
"mousetrap": "^1.6.5",
"octokit": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-instantsearch": "^7.13.4",
"remeda": "^2.17.4",
"remix-auth": "^3.6.0",
"remix-auth-oauth2": "^1.11.1",
"shiki": "^1.23.1",
"simple-text-diff": "^1.7.0",
"tunnel-rat": "^0.1.2",
"zod": "^3.22.3"
},
"devDependencies": {
"@csstools/postcss-global-data": "^1.0.2",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@playwright/test": "^1.37.1",
"@remix-run/dev": "2.13.1",
"@remix-run/eslint-config": "2.13.1",
"@tailwindcss/line-clamp": "^0.4.2",
"@types/d3": "^7.4.0",
"@types/express": "^4.17.14",
"@types/js-cookie": "^3.0.2",
"@types/jsdom": "^21.1.1",
"@types/lodash": "^4.14.191",
"@types/marked": "^4.0.8",
"@types/mime-types": "^2.1.1",
"@types/mousetrap": "^1.6.9",
"@types/react": "^18.2.17",
"@types/react-dom": "^18.0.6",
"@types/react-instantsearch-dom": "^6.12.3",
"autoprefixer": "^10.4.8",
"cssnano": "^5.1.9",
"eslint": "^8.20.0",
"instantsearch.js": "^4.46.2",
"postcss": "^8.4.31",
"postcss-import": "^14.1.0",
"postcss-nesting": "^10.1.4",
"postcss-value-parser": "^4.2.0",
"prettier-plugin-tailwindcss": "^0.5.7",
"tailwindcss": "^3.3.1",
"typescript": "~5.2.2",
"vite": "^5.4.9",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.0.3"
},
"engines": {
"node": "^22.x"
}
}