Files
formbricks/packages/lib/package.json
Shubham Palriwala c470c024c5 fix: Add authorisation for API Key server actions (#741)
* poc: use server session and api key validation on deletion

* feat: use server session and api key validation on deletion and creation

* feat: packages/lib/apiKey for apiKey services and auth

* shubham/auth-for-api-key

* fix: caching

* fix: club caching methods and use authzn errors

* feat: add caching in canUserAccessApiKey
2023-10-02 10:13:19 +02:00

33 lines
917 B
JSON

{
"name": "@formbricks/lib",
"private": true,
"sideEffects": false,
"version": "0.0.0",
"main": "./index.ts",
"types": "./index.ts",
"scripts": {
"clean": "rimraf .turbo node_modules .next",
"lint": "eslint . --ext .ts,.js,.tsx,.jsx",
"lint:fix": "eslint . --ext .ts,.js,.tsx,.jsx --fix",
"lint:report": "eslint . --format json --output-file ../../lint-results/app-store.json"
},
"dependencies": {
"@formbricks/database": "*",
"@formbricks/types": "*",
"@paralleldrive/cuid2": "^2.2.2",
"date-fns": "^2.30.0",
"next-auth": "^4.22.3",
"jsonwebtoken": "^9.0.2",
"markdown-it": "^13.0.2",
"nodemailer": "^6.9.5",
"posthog-node": "^3.1.2",
"server-only": "^0.0.1",
"tailwind-merge": "^1.14.0"
},
"devDependencies": {
"@formbricks/tsconfig": "*",
"@types/jsonwebtoken": "^9.0.3",
"eslint-config-formbricks": "workspace:*"
}
}