-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.5 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
{
"name": "@spin-cycle-mono/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"secret:gen": "node -e \"console.log(crypto.randomBytes(32).toString('hex'))\"",
"start:deps": "docker compose up -d db redis",
"start": "npm run start:deps && nx run-many -t serve",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org lawrence-davis --project spin-cycle-mono ./dist && sentry-cli sourcemaps upload --org lawrence-davis --project spin-cycle-mono ./dist",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@angular/animations": "~19.0.0",
"@angular/common": "~19.0.0",
"@angular/compiler": "~19.0.0",
"@angular/core": "~19.0.0",
"@angular/forms": "~19.0.0",
"@angular/platform-browser": "~19.0.0",
"@angular/platform-browser-dynamic": "~19.0.0",
"@angular/router": "~19.0.0",
"@nestjs/common": "^10.0.2",
"@nestjs/core": "^10.0.2",
"@nestjs/platform-express": "^10.0.2",
"@sentry/cli": "^2.40.0",
"@sentry/node": "^8.48.0",
"@sentry/profiling-node": "^8.48.0",
"axios": "^1.6.0",
"connect-redis": "^8.0.1",
"express-session": "^1.18.1",
"mailgun.js": "^11.1.0",
"oauth-1.0a": "^2.2.6",
"pg": "^8.13.1",
"redis": "^4.7.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"uuid": "^11.0.5",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "~1.10.0",
"@analogjs/vitest-angular": "~1.10.0",
"@angular-devkit/build-angular": "~19.0.0",
"@angular-devkit/core": "~19.0.0",
"@angular-devkit/schematics": "~19.0.0",
"@angular/cli": "~19.0.0",
"@angular/compiler-cli": "~19.0.0",
"@angular/language-service": "~19.0.0",
"@eslint/js": "^9.8.0",
"@flydotio/dockerfile": "^0.6.1",
"@nestjs/config": "^3.3.0",
"@nestjs/jwt": "^10.2.0",
"@nestjs/schedule": "^4.1.2",
"@nestjs/schematics": "^10.0.1",
"@nestjs/serve-static": "^4.0.2",
"@nestjs/testing": "^10.0.2",
"@nestjs/typeorm": "^10.0.2",
"@ng-select/ng-select": "^14.1.0",
"@nx/angular": "^20.3.1",
"@nx/eslint": "20.3.1",
"@nx/eslint-plugin": "20.3.1",
"@nx/jest": "20.3.1",
"@nx/js": "20.3.1",
"@nx/nest": "20.3.1",
"@nx/node": "20.3.1",
"@nx/vite": "20.3.1",
"@nx/web": "20.3.1",
"@nx/webpack": "20.3.1",
"@nx/workspace": "20.3.1",
"@schematics/angular": "~19.0.0",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@types/express-session": "^1.18.1",
"@types/jest": "^29.5.12",
"@types/node": "~18.16.9",
"@types/uuid": "^10.0.0",
"@typescript-eslint/utils": "^8.13.0",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.3.1",
"angular-eslint": "^19.0.2",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jsdom": "~22.1.0",
"lint-staged": "^15.3.0",
"ng-mocks": "^14.13.2",
"ngx-toastr": "^19.0.0",
"nx": "20.3.1",
"prettier": "^3.4.2",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"typeorm": "^0.3.20",
"typescript": "~5.6.2",
"typescript-eslint": "^8.13.0",
"vite": "^5.0.0",
"vitest": "^1.3.1",
"webpack-cli": "^5.1.4"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{html,md}": "npx prettier . --write"
}
}