mirror of
https://github.com/formbricks/formbricks.git
synced 2025-12-30 18:30:32 -06:00
* fix: attempts to reduce time taken to create team * fix: fixes long time taken in team creation * fix: refactors prisma logic * feat: added logic for adding demo data while signing up * fix: adds comment * fix: adds another logic for adding demo data * fix: adds service for adding demo data * fix: fixes * fix: adds demo product creation logic in next auth options * fix: fixes next auth options * fix: fixes team creation logic * refactor: clean up * fix: moves the logic for adding demo product while creating team in bg * fix: moves individual queries in a transaction * refactor: service * fix: moves api route to app-dir * fix: fixes api calls * fix: fixes cache * fix: removes unused code
30 lines
825 B
JSON
30 lines
825 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/errors": "*",
|
|
"@formbricks/types": "*",
|
|
"date-fns": "^2.30.0",
|
|
"markdown-it": "^13.0.1",
|
|
"posthog-node": "^3.1.1",
|
|
"server-only": "^0.0.1",
|
|
"tailwind-merge": "^1.14.0",
|
|
"@paralleldrive/cuid2": "^2.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@formbricks/tsconfig": "*",
|
|
"eslint-config-formbricks": "workspace:*"
|
|
}
|
|
}
|