-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.57 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.57 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "tmdigital",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently \"pnpm --filter @tmdigital/backend start:dev\" \"pnpm --filter @tmdigital/frontend start\" --names \"backend,frontend\" --prefix-colors \"blue,magenta\"",
"dev:backend": "pnpm --filter @tmdigital/backend start:dev",
"dev:frontend": "pnpm --filter @tmdigital/frontend start",
"build": "pnpm -r --filter './apps/*' --filter './packages/*' build",
"build:backend": "pnpm --filter @tmdigital/backend build",
"build:frontend": "pnpm --filter @tmdigital/frontend build:prod",
"test": "jest",
"test:backend": "pnpm --filter @tmdigital/backend test",
"test:frontend": "pnpm --filter @tmdigital/frontend test",
"test:e2e": "pnpm --filter @tmdigital/backend-e2e test:e2e",
"lint": "pnpm -r --filter './apps/*' lint",
"lint:backend": "pnpm --filter @tmdigital/backend lint",
"lint:frontend": "pnpm --filter @tmdigital/frontend lint",
"generate:client": "openapi-generator-cli generate -g typescript-angular -i http://localhost:3000/api/docs-json -o ./apps/frontend/src/app/api --global-property models,apis,supportingFiles,apiTests=false,modelTests=false --additional-properties=ngVersion=20,fileNaming=kebab-case,modelFileSuffix=.model,serviceFileSuffix=.service,useSingleRequestParameter=true",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.27.0",
"devDependencies": {
"@angular-devkit/architect": "^0.2100.5",
"@angular-devkit/core": "^21.0.5",
"@angular-devkit/schematics": "^21.0.5",
"@angular/build": "^21.0.5",
"@angular/cli": "^21.0.5",
"@angular/compiler-cli": "^21.0.7",
"@angular/language-service": "^21.0.7",
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@eslint/js": "^9.39.2",
"@hey-api/openapi-ts": "0.90.2",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.11",
"@openapitools/openapi-generator-cli": "^2.27.0",
"@playwright/test": "^1.57.0",
"@schematics/angular": "^21.0.5",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.15.8",
"@swc/helpers": "^0.5.18",
"@types/jest": "^30.0.0",
"@types/node": "20.19.9",
"@types/supertest": "^6.0.3",
"@types/uuid": "^11.0.0",
"@typescript-eslint/utils": "^8.52.0",
"angular-eslint": "^21.1.0",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-playwright": "^1.8.3",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-environment-node": "^30.2.0",
"jest-preset-angular": "^16.0.0",
"jest-util": "^30.2.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "10.9.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0"
},
"dependencies": {
"@angular/common": "^21.0.7",
"@angular/compiler": "^21.0.7",
"@angular/core": "^21.0.7",
"@angular/forms": "^21.0.7",
"@angular/platform-browser": "^21.0.7",
"@angular/platform-browser-dynamic": "^21.0.7",
"@angular/router": "^21.0.7",
"@nestjs/common": "^11.1.11",
"@nestjs/core": "^11.1.11",
"@nestjs/platform-express": "^11.1.11",
"axios": "^1.13.2",
"cpf-cnpj-validator": "^1.0.3",
"reflect-metadata": "^0.1.14",
"rxjs": "^7.8.2"
},
"lint-staged": {
"**/*.{js,ts,json,css,scss,html}": "prettier --write"
}
}