-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "therapy-crm",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"dev:safe": "turbo run dev:safe",
"build": "turbo run build",
"build:safe": "turbo run build:safe",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"backend": "npm run dev --workspace=apps/backend",
"backend:safe": "npm run dev:safe --workspace=apps/backend",
"web": "npm run dev --workspace=apps/web"
},
"devDependencies": {
"@types/exceljs": "^0.5.3",
"@types/mime-types": "^2.1.4",
"@types/multer": "^1.4.12",
"jest-mock-extended": "^4.0.0-beta1",
"prettier": "^3.0.3",
"turbo": "^1.10.16"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@nestjs/common": "^11.0.12",
"@nestjs/core": "^11.0.12",
"@nestjs/platform-express": "^11.0.12",
"@nestjs/swagger": "^11.1.0",
"@prisma/client": "^6.5.0",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-progress": "^1.1.2",
"@radix-ui/react-radio-group": "^1.2.3",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@types/pdfkit": "^0.13.9",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"exceljs": "^4.4.0",
"pdfkit": "^0.16.0",
"react-day-picker": "^9.6.4",
"reflect-metadata": "^0.2.2"
}
}