-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.65 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.65 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
{
"name": "cloudsmith-docs",
"version": "0.0.1",
"private": true,
"type": "module",
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint .",
"lint:css": "stylelint '**/*.css'",
"lint:css:fix": "stylelint 'src/**/*.css' --fix",
"schemas:download": "tsx scripts/download-schemas",
"test": "jest"
},
"dependencies": {
"@apidevtools/swagger-parser": "^12.1.0",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^16.2.4",
"@vercel/analytics": "^2.0.1",
"algoliasearch": "^5.52.0",
"class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0",
"fast-fuzzy": "^1.12.0",
"fast-glob": "^3.3.3",
"motion": "^12.38.0",
"next": "^16.2.4",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-error-boundary": "^6.1.1",
"react-hotkeys-hook": "^5.3.0",
"react-instantsearch": "^7.31.0",
"react-instantsearch-nextjs": "^1.1.6",
"react-player": "^3.4.0",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^5.2.0"
},
"devDependencies": {
"@ariakit/react": "^0.4.26",
"@csstools/postcss-global-data": "^4.0.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@lehoczky/postcss-fluid": "^1.0.3",
"@next/env": "^16.2.4",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@radix-ui/react-visually-hidden": "^1.2.4",
"@shikijs/transformers": "^4.0.2",
"@svgr/webpack": "^8.1.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/mdx": "^2.0.13",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.4",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"openapi-types": "^12.1.3",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-load-config": "^6.0.1",
"postcss-preset-env": "^11.2.1",
"prettier": "^3.8.3",
"rehype-autolink-headings": "^7.1.0",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"shiki": "^4.0.2",
"stylelint": "^17.9.1",
"stylelint-config-css-modules": "^4.6.0",
"stylelint-config-standard": "^40.0.0",
"swagger2openapi": "^7.0.8",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^6.0.3"
}
}