-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 3.72 KB
/
package.json
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "tskmgr",
"version": "2.0.6",
"license": "MIT",
"scripts": {
"clean": "sh scripts/clean.sh",
"start": "nx serve",
"start:dev": "nx run-many --target=serve --projects=frontend,api",
"build": "nx build",
"test": "nx test",
"typeorm": "TS_NODE_PROJECT=tsconfig.base.json node -r ts-node/register -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"typeorm:migration:generate": "npm run typeorm -- migration:generate -d libs/db/src/lib/data-source.ts -o libs/db/src/migrations/tskmgr",
"typeorm:migration:show": "npm run typeorm -- migration:show -d libs/db/src/lib/data-source.ts",
"typeorm:migration:run": "npm run typeorm -- migration:run -d libs/db/src/lib/data-source.ts"
},
"private": true,
"dependencies": {
"@angular/animations": "17.1.3",
"@angular/common": "17.1.3",
"@angular/compiler": "17.1.3",
"@angular/core": "17.1.3",
"@angular/forms": "17.1.3",
"@angular/localize": "17.1.3",
"@angular/platform-browser": "17.1.3",
"@angular/platform-browser-dynamic": "17.1.3",
"@angular/router": "17.1.3",
"@nestjs/common": "10.3.3",
"@nestjs/core": "10.3.3",
"@nestjs/platform-express": "10.3.3",
"@nestjs/swagger": "7.3.0",
"@nestjs/typeorm": "^10.0.2",
"@ng-bootstrap/ng-bootstrap": "^16.0.0",
"@popperjs/core": "^2.11.6",
"ag-grid-angular": "^31.1.1",
"ag-grid-community": "^31.1.1",
"ansi_up": "^6.0.2",
"bootstrap": "5.3.3",
"bootstrap-icons": "^1.11.3",
"date-fns": "^3.3.1",
"debug": "^4.3.5",
"pg": "^8.11.3",
"reflect-metadata": "^0.1.13",
"rxjs": "7.8.1",
"systeminformation": "^5.16.6",
"timelines-chart": "^2.12.1",
"tslib": "^2.3.0",
"typeorm": "^0.3.20",
"uuid": "^9.0.1",
"zone.js": "0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.1.4",
"@angular-devkit/core": "17.1.4",
"@angular-devkit/schematics": "17.1.4",
"@angular-eslint/eslint-plugin": "17.0.1",
"@angular-eslint/eslint-plugin-template": "17.0.1",
"@angular-eslint/template-parser": "17.0.1",
"@angular/cli": "~17.1.0",
"@angular/compiler-cli": "17.1.3",
"@angular/language-service": "17.1.3",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@nestjs/cli": "^10.3.2",
"@nestjs/schematics": "10.1.1",
"@nestjs/testing": "10.3.3",
"@nx/angular": "18.0.7",
"@nx/cypress": "18.0.7",
"@nx/eslint": "18.0.7",
"@nx/eslint-plugin": "18.0.7",
"@nx/jest": "18.0.7",
"@nx/js": "18.0.7",
"@nx/nest": "18.0.7",
"@nx/node": "18.0.7",
"@nx/web": "18.0.7",
"@nx/webpack": "18.0.7",
"@nx/workspace": "18.0.7",
"@schematics/angular": "17.1.4",
"@swc-node/register": "~1.8.0",
"@swc/core": "~1.3.85",
"@swc/helpers": "~0.5.2",
"@types/d3-scale": "^4.0.8",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/jest": "29.5.12",
"@types/lodash": "^4.14.202",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.25",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"cypress": "12.17.2",
"eslint": "8.48.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-cypress": "2.13.4",
"eslint-plugin-deprecation": "^2.0.0",
"husky": "^9.0.11",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "^29.4.1",
"jest-preset-angular": "13.1.6",
"jsonc-eslint-parser": "^2.1.0",
"ng-mocks": "^14.12.1",
"nx": "18.0.7",
"prettier": "2.7.1",
"supertest": "^6.3.4",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "5.3.3"
}
}