mirror of
https://github.com/makeplane/plane.git
synced 2025-12-29 00:24:56 +01:00
57 lines
1.9 KiB
JSON
57 lines
1.9 KiB
JSON
{
|
|
"name": "@plane/propel",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"license": "AGPL-3.0",
|
|
"scripts": {
|
|
"check:lint": "eslint . --max-warnings 7",
|
|
"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",
|
|
"storybook": "storybook dev -p 6006",
|
|
"build-storybook": "storybook build"
|
|
},
|
|
"exports": {
|
|
"./avatar": "./src/avatar/index.ts",
|
|
"./charts/*": "./src/charts/*/index.ts",
|
|
"./dialog": "./src/dialog/index.ts",
|
|
"./menu": "./src/menu/index.ts",
|
|
"./table": "./src/table/index.ts",
|
|
"./tabs": "./src/tabs/index.ts",
|
|
"./popover": "./src/popover/index.ts",
|
|
"./command": "./src/command/index.ts",
|
|
"./combobox": "./src/combobox/index.ts",
|
|
"./tooltip": "./src/tooltip/index.ts",
|
|
"./styles/fonts": "./src/styles/fonts/index.css",
|
|
"./card": "./src/card/index.ts",
|
|
"./switch": "./src/switch/index.ts"
|
|
},
|
|
"dependencies": {
|
|
"@base-ui-components/react": "^1.0.0-beta.2",
|
|
"@plane/constants": "workspace:*",
|
|
"@plane/hooks": "workspace:*",
|
|
"@plane/types": "workspace:*",
|
|
"@tanstack/react-table": "^8.21.3",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"lucide-react": "^0.469.0",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"recharts": "^2.15.1",
|
|
"tailwind-merge": "^3.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@plane/eslint-config": "workspace:*",
|
|
"@plane/tailwind-config": "workspace:*",
|
|
"@plane/typescript-config": "workspace:*",
|
|
"@storybook/react-vite": "^9.1.2",
|
|
"@types/react": "18.3.1",
|
|
"@types/react-dom": "18.3.0",
|
|
"eslint-plugin-storybook": "^9.1.2",
|
|
"storybook": "^9.1.2",
|
|
"typescript": "5.8.3"
|
|
}
|
|
}
|