mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00:00
* chore: added common libs to pnpm workspace catalog * chore: update pnpm lockfile to use exact versions for React and TypeScript dependencies * refactor: removed string from the versions * fix: lint * refactor: cleanup * fix: lint * chore: updated lock file
82 lines
2.7 KiB
JSON
82 lines
2.7 KiB
JSON
{
|
|
"name": "@plane/ui",
|
|
"description": "UI components shared across multiple apps internally",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"sideEffects": false,
|
|
"license": "AGPL-3.0",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsup --minify",
|
|
"dev": "tsup --watch",
|
|
"storybook": "storybook dev -p 6006",
|
|
"build-storybook": "storybook build",
|
|
"postcss": "postcss styles/globals.css -o styles/output.css --watch",
|
|
"check:lint": "eslint . --max-warnings 94",
|
|
"check:types": "tsc --noEmit",
|
|
"check:format": "prettier --check \"**/*.{ts,tsx,md,json,css,scss}\"",
|
|
"fix:lint": "eslint . --fix",
|
|
"fix:format": "prettier --write \"**/*.{ts,tsx,md,json,css,scss}\"",
|
|
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "catalog:",
|
|
"react-dom": "catalog:"
|
|
},
|
|
"dependencies": {
|
|
"@atlaskit/pragmatic-drag-and-drop": "^1.1.10",
|
|
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.0.3",
|
|
"@blueprintjs/core": "^4.16.3",
|
|
"@blueprintjs/popover2": "^1.13.3",
|
|
"@headlessui/react": "^1.7.3",
|
|
"@plane/constants": "workspace:*",
|
|
"@plane/hooks": "workspace:*",
|
|
"@plane/types": "workspace:*",
|
|
"@plane/utils": "workspace:*",
|
|
"@popperjs/core": "^2.11.8",
|
|
"@radix-ui/react-scroll-area": "^1.2.3",
|
|
"clsx": "^2.0.0",
|
|
"emoji-picker-react": "^4.5.16",
|
|
"lodash": "^4.17.21",
|
|
"lucide-react": "^0.469.0",
|
|
"react-color": "^2.19.3",
|
|
"react-day-picker": "9.5.0",
|
|
"react-popper": "^2.3.0",
|
|
"sonner": "^1.4.41",
|
|
"tailwind-merge": "^2.0.0",
|
|
"use-font-face-observer": "^1.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@chromatic-com/storybook": "^1.4.0",
|
|
"@plane/eslint-config": "workspace:*",
|
|
"@plane/tailwind-config": "workspace:*",
|
|
"@plane/typescript-config": "workspace:*",
|
|
"@storybook/addon-essentials": "^8.1.1",
|
|
"@storybook/addon-interactions": "^8.1.1",
|
|
"@storybook/addon-links": "^8.1.1",
|
|
"@storybook/addon-onboarding": "^8.1.1",
|
|
"@storybook/addon-styling-webpack": "^1.0.0",
|
|
"@storybook/addon-webpack5-compiler-swc": "^1.0.2",
|
|
"@storybook/blocks": "^8.1.1",
|
|
"@storybook/react": "^8.1.1",
|
|
"@storybook/react-webpack5": "^8.1.1",
|
|
"@storybook/test": "^8.1.1",
|
|
"@types/lodash": "4.17.20",
|
|
"@types/node": "^20.5.2",
|
|
"@types/react": "catalog:",
|
|
"@types/react-color": "^3.0.9",
|
|
"@types/react-dom": "catalog:",
|
|
"autoprefixer": "^10.4.19",
|
|
"postcss-cli": "^11.0.0",
|
|
"postcss-nested": "^6.0.1",
|
|
"storybook": "^8.1.1",
|
|
"tsup": "catalog:",
|
|
"typescript": "catalog:"
|
|
}
|
|
}
|