-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
85 lines (85 loc) · 2.65 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
{
"name": "docs-v2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 3013",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-for-typos": "cspell '**/*.{md,mdx,ts,tsx,mdoc}'",
"test": "vitest",
"compile-vectors": "npx tsc --project tsconfig.vectors.json && node scripts/compile_vectors.js; tsc --build --clean",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "biome format --write .",
"check": "biome check --apply ."
},
"packageManager": "[email protected]",
"engines": {
"pnpm": "9.11.0"
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"@keystatic/core": "^0.5.11",
"@keystatic/next": "^5.0.0",
"@mantine/core": "^7.12.1",
"@mantine/form": "^7.12.1",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@readme/oas-to-snippet": "^25.2.14",
"@sentry/nextjs": "^7.109.0",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "20.6.3",
"@types/react": "18.2.22",
"@types/react-dom": "18.2.7",
"@vercel/analytics": "^1.2.2",
"@vercel/speed-insights": "^1.0.10",
"autoprefixer": "10.4.16",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^1.0.0",
"dotenv": "^16.4.5",
"eslint": "8.49.0",
"eslint-config-next": "13.5.2",
"gray-matter": "^4.0.3",
"marked": "^9.0.3",
"next": "14.2.2",
"oas": "^24.5.3",
"oas-normalize": "^11.1.1",
"openai": "^4.29.2",
"postcss": "8.4.30",
"react": "18.2.0",
"react-dom": "18.2.0",
"shiki": "^0.14.4",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.4.1",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"typescript": "5.2.2"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@chromatic-com/storybook": "^1.5.0",
"@storybook/addon-essentials": "8.2.0-alpha.7",
"@storybook/addon-interactions": "8.2.0-alpha.7",
"@storybook/addon-links": "8.2.0-alpha.7",
"@storybook/addon-onboarding": "8.2.0-alpha.7",
"@storybook/addon-styling-webpack": "^1.0.0",
"@storybook/blocks": "8.2.0-alpha.7",
"@storybook/nextjs": "8.2.0-alpha.7",
"@storybook/react": "8.2.0-alpha.7",
"@storybook/test": "8.2.0-alpha.7",
"@testing-library/react": "^15.0.2",
"@vitejs/plugin-react": "^4.2.1",
"cspell": "^8.7.0",
"eslint-plugin-storybook": "^0.8.0",
"jsdom": "^24.0.0",
"storybook": "8.2.0-alpha.7",
"vitest": "^1.5.0"
}
}