Removed services and actions related to team account deletion as well as updated paths within other dependent files, better reflecting their new locations. Also, added a new service titled 'AccountBillingService' for handling billing-related operations and restructured the form layout and handled translation in 'team-account-danger-zone' component.
22 lines
519 B
JSON
22 lines
519 B
JSON
{
|
|
"name": "@kit/prettier-config",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"main": "index.mjs",
|
|
"scripts": {
|
|
"clean": "rm -rf .turbo node_modules",
|
|
"format": "prettier --check \"**/*.{mjs,json}\"",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
|
|
"prettier": "^3.2.5",
|
|
"prettier-plugin-tailwindcss": "^0.5.13"
|
|
},
|
|
"devDependencies": {
|
|
"@kit/tsconfig": "workspace:^",
|
|
"typescript": "^5.4.3"
|
|
},
|
|
"prettier": "./index.mjs"
|
|
}
|