-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
127 lines (127 loc) · 4.45 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
{
"name": "@boldare/source",
"version": "1.2.1",
"license": "MIT",
"scripts": {
"set-env": "ts-node libs/ai-embedded/set-env.mjs",
"start": "node dist/apps/api/main.js",
"start:dev": "nx run-many --parallel --target=serve --projects=api,spa ",
"start:spa": "nx serve spa",
"start:api": "nx serve api",
"update": "nx migrate latest && nx migrate --run-migrations",
"build": "npm run set-env && npm run build:ai-embedded && npm run build:spa && npm run build:api",
"build:spa": "nx build --prod --skip-nx-cache spa",
"build:api": "nx build --prod api",
"build:openai-assistant": "nx build --prod openai-assistant --skip-nx-cache",
"build:ai-embedded": "nx build ai-embedded --prod --skip-nx-cache && npm run cp:ai-embedded",
"publish": "npm run build:openai-assistant && npm run cp:readme && cd dist/libs/openai-assistant/ && npm publish --access=public && cd ../../..",
"cp:ai-embedded": "cp ./dist/libs/ai-embedded/main.js ./apps/spa/src/assets/js/ai-embedded.js",
"cp:readme": "cp ./README.md ./dist/libs/openai-assistant/README.md",
"lint": "nx run-many --parallel --target=lint --all --skip-nx-cache",
"test:openai-assistant": "nx test openai-assistant",
"test:watch:openai-assistant": "nx test openai-assistant --watch",
"test:spa": "nx test spa",
"test:watch:spa": "nx test spa --watch",
"test": "nx run-many --parallel --target=test --all --skip-nx-cache",
"format": "nx format:write",
"prepare": "husky"
},
"private": false,
"dependencies": {
"@angular/animations": "18.2.8",
"@angular/cdk": "18.2.8",
"@angular/common": "18.2.8",
"@angular/compiler": "18.2.8",
"@angular/core": "18.2.8",
"@angular/forms": "18.2.8",
"@angular/material": "18.2.8",
"@angular/platform-browser": "18.2.8",
"@angular/platform-browser-dynamic": "18.2.8",
"@angular/router": "18.2.8",
"@nestjs/axios": "^3.0.3",
"@nestjs/common": "^10.4.4",
"@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.4.4",
"@nestjs/platform-express": "^10.4.4",
"@nestjs/platform-socket.io": "^10.3.0",
"@nestjs/serve-static": "^4.0.0",
"@nestjs/swagger": "^7.4.2",
"@nestjs/websockets": "^10.3.0",
"axios": "1.7.7",
"class-validator": "^0.14.1",
"envfile": "^7.1.0",
"ngx-markdown": "^18.1.0",
"openai": "^4.67.3",
"prismjs": "^1.29.0",
"recordrtc": "^5.6.2",
"reflect-metadata": "^0.2.1",
"rxjs": "^7.8.0",
"socket.io": "^4.8.0",
"socket.io-client": "^4.8.0",
"tslib": "^2.6.3",
"zone.js": "~0.14.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.2.8",
"@angular-devkit/core": "18.2.8",
"@angular-devkit/schematics": "18.2.8",
"@angular-eslint/eslint-plugin": "18.3.1",
"@angular-eslint/eslint-plugin-template": "18.3.1",
"@angular-eslint/template-parser": "18.3.1",
"@angular/cli": "~18.2.0",
"@angular/compiler-cli": "18.2.8",
"@angular/language-service": "18.2.8",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@nestjs/schematics": "^10.1.3",
"@nestjs/testing": "^10.4.4",
"@nx/angular": "20.0.0",
"@nx/esbuild": "20.0.0",
"@nx/eslint": "20.0.0",
"@nx/eslint-plugin": "20.0.0",
"@nx/jest": "20.0.0",
"@nx/js": "20.0.0",
"@nx/nest": "20.0.0",
"@nx/node": "20.0.0",
"@nx/web": "20.0.0",
"@nx/webpack": "20.0.0",
"@nx/workspace": "20.0.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@schematics/angular": "18.2.8",
"@svgr/webpack": "^8.0.1",
"@swc-node/register": "1.10.9",
"@swc/cli": "0.4.1-nightly.20240914",
"@swc/core": "1.7.35",
"@swc/helpers": "0.5.13",
"@swc/jest": "0.2.36",
"@types/jest": "29.5.13",
"@types/multer": "^1.4.12",
"@types/node": "22.7.5",
"@typescript-eslint/eslint-plugin": "8.9.0",
"@typescript-eslint/parser": "8.9.0",
"@typescript-eslint/utils": "8.9.0",
"dotenv": "^16.4.5",
"esbuild": "^0.19.12",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^9.1.6",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "^29.4.1",
"jest-preset-angular": "14.1.0",
"jsonc-eslint-parser": "^2.1.0",
"nx": "20.0.0",
"prettier": "^3.2.5",
"swc-loader": "0.2.6",
"ts-jest": "^29.2.5",
"ts-node": "10.9.2",
"typescript": "5.5.4",
"url-loader": "^4.1.1"
},
"nx": {
"includedScripts": []
},
"engines": {
"node": "^20"
}
}