mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-05 16:19:55 -06:00
* format code * fix building issue in database package * update turbo config and package jsons * update error package with more information and license * fix typescript issues in ui package * update package-lock * update packages * clean dependencies in web * clean up dependencies in demo & formbricks-com * remove unsused template file * remove legacy capture endpoint * remove unfinished client endpoints * clean up unused functions * fix formbricks not loading on invalid session * update readme
30 lines
811 B
JSON
30 lines
811 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": "*",
|
|
"@formbricks/errors": "*",
|
|
"date-fns": "^2.30.0",
|
|
"markdown-it": "^13.0.1",
|
|
"posthog-node": "^3.1.1",
|
|
"tailwind-merge": "^1.12.0"
|
|
},
|
|
"devDependencies": {
|
|
"@formbricks/tsconfig": "*",
|
|
"eslint": "^8.41.0",
|
|
"eslint-config-formbricks": "workspace:*",
|
|
"typescript": "^5.0.4"
|
|
}
|
|
}
|