mirror of
https://github.com/karakeep-app/karakeep.git
synced 2025-12-12 20:35:52 +01:00
54 lines
1.5 KiB
JSON
54 lines
1.5 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "@karakeep/landing",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"format": "prettier . --ignore-path ../../.prettierignore",
|
|
"format:fix": "prettier . --ignore-path ../../.prettierignore --write",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@radix-ui/react-slot": "^1.0.2",
|
|
"@svgr/webpack": "^8.1.0",
|
|
"class-variance-authority": "^0.7.0",
|
|
"clsx": "^2.1.0",
|
|
"lucide-react": "^0.330.0",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-select": "^5.8.0",
|
|
"sharp": "^0.33.3",
|
|
"tailwind-merge": "^2.2.1",
|
|
"tailwindcss-animate": "^1.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@karakeep/eslint-config": "workspace:^0.2.0",
|
|
"@karakeep/prettier-config": "workspace:^0.1.0",
|
|
"@karakeep/tailwind-config": "workspace:^0.1.0",
|
|
"@karakeep/tsconfig": "workspace:^0.1.0",
|
|
"@tailwindcss/typography": "^0.5.10",
|
|
"@types/react": "^18.2.55",
|
|
"@types/react-dom": "^18.2.19",
|
|
"@vitejs/plugin-react": "^4.3.4",
|
|
"autoprefixer": "^10.4.17",
|
|
"postcss": "^8.4.35",
|
|
"tailwindcss": "^3.4.1",
|
|
"vite": "^5.1.0",
|
|
"vite-plugin-svgr": "^4.3.0"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@karakeep/eslint-config/base",
|
|
"@karakeep/eslint-config/react"
|
|
]
|
|
},
|
|
"prettier": "@karakeep/prettier-config"
|
|
}
|