Files
formbricks-formbricks/packages/lib/package.json
Anshuman Pandey ad42f4cc55 Dramatically improve load times when creating a new team(#614)
* 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
2023-08-05 13:59:06 +02:00

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:*"
}
}