-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 4.31 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@darndwestermann/data-pulse",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "nx run client:serve",
"api": "nx run api:serve",
"api:build": "nx run api:build && cp .env ./dist/apps/api/.env && npm run migration:build",
"migration:build": "npx tsc ./apps/api/src/database/*.ts ./apps/api/src/database/**/*.ts --outDir ./dist/apps/api/database",
"migration:generate": "PRODUCTION=false npm run migration:build && npx ts-node-dev -P ./apps/api/tsconfig.app.json ./node_modules/typeorm/cli.js migration:generate ./apps/api/src/database/migrations/${npm_config_name} -d ./apps/api/src/database/database.config.ts",
"migration:up": "PRODUCTION=true typeorm -d ./dist/apps/api/database/database.config.js migration:run",
"migration:down": "PRODUCTION=true typeorm -d ./dist/apps/api/database/database.config.js migration:revert"
},
"private": true,
"dependencies": {
"@angular/animations": "~18.2.0",
"@angular/cdk": "^18.2.14",
"@angular/common": "~18.2.0",
"@angular/compiler": "~18.2.0",
"@angular/core": "~18.2.0",
"@angular/forms": "~18.2.0",
"@angular/platform-browser": "~18.2.0",
"@angular/platform-browser-dynamic": "~18.2.0",
"@angular/router": "~18.2.0",
"@jsverse/transloco": "^7.5.0",
"@nestjs/common": "^10.4.12",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^10.4.12",
"@nestjs/jwt": "^10.2.0",
"@nestjs/mapped-types": "*",
"@nestjs/passport": "^10.0.3",
"@nestjs/platform-express": "^10.4.12",
"@nestjs/typeorm": "^10.0.2",
"@swimlane/ngx-charts": "^21.0.0",
"@taiga-ui/addon-charts": "^4.17.0",
"@taiga-ui/addon-commerce": "^4.17.0",
"@taiga-ui/addon-mobile": "^4.17.0",
"@taiga-ui/addon-table": "^4.17.0",
"@taiga-ui/cdk": "^4.17.0",
"@taiga-ui/core": "^4.17.0",
"@taiga-ui/icons": "^4.17.0",
"@taiga-ui/icons-fontawesome": "^4.17.0",
"@taiga-ui/kit": "^4.17.0",
"@taiga-ui/layout": "^4.17.0",
"@taiga-ui/legacy": "^4.17.0",
"@taiga-ui/polymorpheus": "^4.7.4",
"axios": "^1.7.8",
"bcrypt": "^5.1.1",
"d3-array": "^3.2.4",
"d3-brush": "^3.0.0",
"d3-color": "^3.1.0",
"d3-ease": "^3.0.1",
"d3-format": "^3.1.0",
"d3-hierarchy": "^3.1.2",
"d3-interpolate": "^3.0.1",
"d3-sankey": "^0.12.3",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-time": "^3.1.0",
"d3-transition": "^3.0.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"html2canvas": "^1.4.1",
"jspdf": "^2.5.2",
"mysql2": "^3.11.5",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.14",
"rxjs": "~7.8.0",
"typeorm": "^0.3.20",
"zone.js": "^0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "~18.2.0",
"@angular-devkit/core": "~18.2.0",
"@angular-devkit/schematics": "~18.2.0",
"@angular/cli": "~18.2.0",
"@angular/compiler-cli": "~18.2.0",
"@angular/language-service": "~18.2.0",
"@eslint/js": "^9.8.0",
"@nestjs/schematics": "^10.2.3",
"@nestjs/testing": "^10.4.12",
"@nx/angular": "20.1.4",
"@nx/devkit": "20.1.4",
"@nx/eslint": "20.1.4",
"@nx/eslint-plugin": "20.1.4",
"@nx/jest": "20.1.4",
"@nx/js": "20.1.4",
"@nx/nest": "^20.1.4",
"@nx/node": "20.1.4",
"@nx/playwright": "20.1.4",
"@nx/web": "20.1.4",
"@nx/webpack": "20.1.4",
"@nx/workspace": "20.1.4",
"@playwright/test": "^1.49.0",
"@schematics/angular": "~18.2.0",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "^0.5.15",
"@types/bcrypt": "^5.0.2",
"@types/d3-array": "^3.2.1",
"@types/d3-ease": "^3.0.2",
"@types/d3-interpolate": "^3.0.4",
"@types/d3-scale": "^4.0.8",
"@types/d3-selection": "^3.0.11",
"@types/d3-shape": "^3.1.6",
"@types/d3-transition": "^3.0.9",
"@types/jest": "^29.5.14",
"@types/node": "18.16.9",
"@typescript-eslint/utils": "^8.0.0",
"angular-eslint": "^18.4.2",
"autoprefixer": "^10.4.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-playwright": "^1.8.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-preset-angular": "~14.1.0",
"nx": "20.1.4",
"postcss": "^8.4.49",
"prettier": "^3.4.1",
"tailwindcss": "^3.4.15",
"ts-jest": "^29.2.5",
"ts-node": "10.9.1",
"ts-node-dev": "^2.0.0",
"tslib": "^2.8.1",
"typescript": "~5.5.2",
"typescript-eslint": "^8.16.0",
"webpack-cli": "^5.1.4"
}
}