-
Notifications
You must be signed in to change notification settings - Fork 242
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.26 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.26 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
{
"name": "landing-page",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=20.18.3"
},
"scripts": {
"test": "npm run build",
"dev": "vite",
"build": "tsc -b && vite build && npx tsx scripts/renderTopNavigation.tsx && npx tsx scripts/insertRootHtml.tsx",
"lint": "eslint .",
"preview": "vite preview",
"prepare": "cd ../../ && husky docs/landing-page/.husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-slot": "^1.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"i18next": "^23.16.3",
"i18next-browser-languagedetector": "^8.2.0",
"i18next-http-backend": "^2.6.2",
"lucide-react": "^0.553.0",
"react": "^18.3.1",
"react-dom": "^19.2.0",
"react-i18next": "^15.1.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.9.0",
"@eslint/js": "^9.39.1",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-interactions": "^8.6.14",
"@storybook/addon-links": "^8.3.6",
"@storybook/addon-onboarding": "^8.3.6",
"@storybook/addon-themes": "^8.3.6",
"@storybook/blocks": "^8.3.6",
"@storybook/react": "^8.3.6",
"@storybook/react-vite": "^8.3.6",
"@storybook/test": "^8.6.14",
"@types/node": "^22.7.7",
"@types/react": "^18.3.10",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.22",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.24",
"eslint-plugin-storybook": "^0.10.1",
"globals": "^15.9.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"storybook": "^8.6.12",
"tailwindcss": "^3.4.14",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^5.4.21"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}