teableio_teable/plugins/package.json
Boris c1a10ff7a4
refactor: plugin file org (#942)
* refactor: official file organization

* fix: reset query error in plugin

* fix: next types

* fix: restore plugin position

* fix: plugin header flash
2024-09-26 18:57:03 +08:00

48 lines
1.5 KiB
JSON

{
"name": "@teable/plugin",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3002",
"build": "next build && node ./scripts/build-replace.js",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx,.cjs,.mjs,.mdx --cache --cache-location ../../.cache/eslint/nextjs-app.eslintcache",
"clean": "rimraf ./.next ./out ./coverage ./tsconfig.tsbuildinfo ./node_modules/.cache ./.eslintcache",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"test": "echo \"Error: no test specified\""
},
"dependencies": {
"@hookform/resolvers": "3.3.4",
"@tanstack/react-query": "4.36.1",
"@teable/common-i18n": "workspace:^",
"@teable/core": "workspace:^",
"@teable/icons": "workspace:^",
"@teable/next-themes": "0.3.3",
"@teable/openapi": "workspace:^",
"@teable/sdk": "workspace:^",
"@teable/ui-lib": "workspace:^",
"i18next": "23.10.1",
"i18next-resources-to-backend": "1.2.1",
"lucide-react": "0.363.0",
"next": "14.1.4",
"next-secure-headers": "2.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.51.1",
"react-i18next": "14.1.0",
"recharts": "2.12.3",
"zod": "3.22.4"
},
"devDependencies": {
"@types/node": "20.9.0",
"@types/react": "18.2.69",
"@types/react-dom": "18.2.22",
"eslint": "8.57.0",
"eslint-config-next": "14.1.4",
"postcss": "8.4.38",
"rimraf": "5.0.5",
"tailwindcss": "3.4.1",
"typescript": "5.4.3"
}
}