mirror of
https://github.com/makeplane/plane.git
synced 2025-12-24 23:59:40 +01:00
39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
JSON
{
|
|
"name": "@plane/propel",
|
|
"version": "0.28.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"
|
|
},
|
|
"exports": {
|
|
"./ui/*": "./src/ui/*.tsx",
|
|
"./charts/*": "./src/charts/*/index.ts",
|
|
"./table": "./src/table/index.ts",
|
|
"./styles/fonts": "./src/styles/fonts/index.css"
|
|
},
|
|
"dependencies": {
|
|
"@radix-ui/react-slot": "^1.1.1",
|
|
"@tanstack/react-table": "^8.21.3",
|
|
"class-variance-authority": "^0.7.1",
|
|
"lucide-react": "^0.469.0",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"recharts": "^2.15.1",
|
|
"tailwindcss-animate": "^1.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@plane/eslint-config": "*",
|
|
"@plane/tailwind-config": "*",
|
|
"@plane/typescript-config": "*",
|
|
"@types/react": "18.3.1",
|
|
"@types/react-dom": "18.3.0",
|
|
"typescript": "5.8.3"
|
|
}
|
|
}
|