-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.76 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.76 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "singularity",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "nx",
"preinstall": "npm run build-wasm",
"start": "nx serve --project singularity-client --host 0.0.0.0",
"start-api": "nx serve singularity-api",
"typeorm": "ts-node --project apps/singularity-api/tsconfig.app.json --transpile-only -r tsconfig-paths/register ./node_modules/typeorm/cli -d ormconfig.ts",
"build-frontend": "nx build --project singularity-client --configuration production",
"build-backend": "nx build --project singularity-api --configuration production",
"build-wasm": "cargo clean --manifest-path ./libs/wasm/Cargo.toml && wasm-pack build libs/wasm --target web",
"test": "nx test"
},
"private": true,
"dependencies": {
"@angular-builders/custom-webpack": "^17.0.1",
"@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/platform-browser": "17.1.3",
"@angular/platform-browser-dynamic": "17.1.3",
"@angular/router": "17.1.3",
"@angular/service-worker": "17.1.3",
"@automapper/classes": "^8.7.7",
"@automapper/core": "^8.7.7",
"@automapper/nestjs": "^8.7.7",
"@distube/ytdl-core": "^4.16.12",
"@fastify/static": "^6.10.1",
"@nestjs/axios": "^3.0.2",
"@nestjs/common": "10.0.2",
"@nestjs/config": "^3.2.0",
"@nestjs/core": "10.0.2",
"@nestjs/jwt": "^10.0.3",
"@nestjs/passport": "^10.0.2",
"@nestjs/platform-express": "10.0.2",
"@nestjs/schedule": "^4.1.2",
"@nestjs/serve-static": "^4.0.1",
"@nestjs/typeorm": "^10.0.2",
"@ngneat/transloco": "^4.3.0",
"@nx/angular": "18.0.8",
"@nx/webpack": "^18.0.8",
"angularx-qrcode": "^17.0.0",
"axios": "1.7.4",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"extract-colors": "^4.0.2",
"file-type": "^16.5.3",
"gsap": "^3.12.5",
"js-confetti": "^0.11.0",
"konva": "^8.4.2",
"mysql2": "^3.3.2",
"ngx-indexed-db": "^16.0.0",
"ngx-owl-carousel-o": "^17.0.0",
"nodemailer": "^6.9.9",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"pitch-detection-wasm": "file:./libs/wasm/pkg",
"reflect-metadata": "^0.1.13",
"rxjs": "7.8.0",
"sharp": "^0.33.2",
"tone": "^14.7.77",
"ts-md5": "^1.3.1",
"typeorm": "^0.3.11",
"zone.js": "0.14.4"
},
"devDependencies": {
"@angular-devkit/architect": "0.1701.4",
"@angular-devkit/build-angular": "^17.2.3",
"@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",
"@angular/pwa": "17.1.4",
"@nestjs/testing": "10.0.2",
"@nx/cypress": "18.0.8",
"@nx/eslint": "^18.0.8",
"@nx/eslint-plugin": "18.0.8",
"@nx/jest": "18.0.8",
"@nx/js": "18.0.8",
"@nx/nest": "18.0.8",
"@nx/node": "18.0.8",
"@nx/workspace": "18.0.8",
"@schematics/angular": "17.1.4",
"@types/audioworklet": "^0.0.28",
"@types/cookie-parser": "^1.4.7",
"@types/fabric": "^4.5.7",
"@types/gsap": "^3.0.0",
"@types/jest": "29.4.4",
"@types/multer": "^1.4.7",
"@types/node": "18.16.9",
"@types/passport-jwt": "^4.0.1",
"@types/webaudioapi": "^0.0.27",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"ajv": "^8.12.0",
"eslint": "8.48.0",
"eslint-config-prettier": "9.0.0",
"jest": "29.5.0",
"nx": "18.0.8",
"prettier": "2.6.2",
"ts-jest": "29.1.2",
"typescript": "5.3.3"
}
}