@idevconn/create-icore 0.6.0 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +87 -18
- package/dist/index.cjs +87 -18
- package/dist/index.js +87 -18
- package/package.json +1 -1
- package/templates/apps/api/package.json +1 -0
- package/templates/apps/api/src/main.ts +0 -2
- package/templates/apps/api/webpack.config.js +20 -0
- package/templates/apps/microservices/auth/webpack.config.js +30 -0
- package/templates/apps/microservices/jobs/package.json +16 -0
- package/templates/apps/microservices/jobs/webpack.config.js +30 -0
- package/templates/apps/microservices/notes/package.json +19 -0
- package/templates/apps/microservices/notes/webpack.config.js +30 -0
- package/templates/apps/microservices/payment/package.json +16 -0
- package/templates/apps/microservices/payment/webpack.config.js +30 -0
- package/templates/apps/microservices/upload/package.json +1 -1
- package/templates/apps/microservices/upload/webpack.config.js +30 -0
- package/templates/apps/templates/client-antd/package.json +9 -0
- package/templates/apps/templates/client-mui/package.json +11 -0
- package/templates/apps/templates/client-shadcn/package.json +18 -0
- package/templates/apps/templates/client-shadcn/src/routes/login.tsx +8 -15
- package/templates/libs/auth-client/package.json +1 -1
- package/templates/libs/auth-strategies/firebase/package.json +1 -1
- package/templates/libs/auth-strategies/supabase/package.json +1 -1
- package/templates/libs/db-strategies/firestore/package.json +1 -1
- package/templates/libs/db-strategies/supabase/package.json +1 -1
- package/templates/libs/firebase-admin/package.json +1 -1
- package/templates/libs/jobs-client/package.json +1 -1
- package/templates/libs/notes-client/package.json +1 -1
- package/templates/libs/payment-client/package.json +1 -1
- package/templates/libs/shared/package.json +3 -3
- package/templates/libs/storage-strategies/cloudinary/package.json +1 -1
- package/templates/libs/storage-strategies/firebase/package.json +1 -1
- package/templates/libs/storage-strategies/supabase/package.json +1 -1
- package/templates/libs/template-shared/package.json +1 -1
- package/templates/libs/upload-client/package.json +1 -1
- package/templates/package.json +2 -27
- package/templates/tools/create-icore/_template-shell/package.json +2 -27
- package/templates/.yarn/releases/yarn-4.5.0.cjs +0 -925
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
const { NxAppWebpackPlugin } = require('@nx/webpack/app-plugin');
|
|
2
|
+
const { TsconfigPathsPlugin } = require('tsconfig-paths-webpack-plugin');
|
|
2
3
|
const { join } = require('path');
|
|
3
4
|
|
|
4
5
|
module.exports = {
|
|
@@ -9,6 +10,31 @@ module.exports = {
|
|
|
9
10
|
devtoolModuleFilenameTemplate: '[absolute-resource-path]',
|
|
10
11
|
}),
|
|
11
12
|
},
|
|
13
|
+
resolve: {
|
|
14
|
+
// Resolve @icore/* via tsconfig paths so webpack can bundle them inline.
|
|
15
|
+
// nx skips its own tsconfig-paths plugin on "TS solution" workspaces, so we
|
|
16
|
+
// wire the standalone plugin explicitly (it follows extends → tsconfig.base).
|
|
17
|
+
plugins: [new TsconfigPathsPlugin({ configFile: join(__dirname, 'tsconfig.app.json') })],
|
|
18
|
+
},
|
|
19
|
+
// Keep every npm package external EXCEPT @icore/* workspace packages, which
|
|
20
|
+
// are bundled inline. @icore/* are workspace-internal: at runtime the package
|
|
21
|
+
// manager symlinks them to their TS source dir (not the compiled dist), so an
|
|
22
|
+
// external require('@icore/shared') fails ("Cannot find module './env'").
|
|
23
|
+
// Bundling removes runtime workspace resolution entirely — works identically
|
|
24
|
+
// on yarn / npm / pnpm.
|
|
25
|
+
externals: [
|
|
26
|
+
function ({ request }, callback) {
|
|
27
|
+
if (
|
|
28
|
+
!request ||
|
|
29
|
+
request.startsWith('.') ||
|
|
30
|
+
request.startsWith('/') ||
|
|
31
|
+
request.startsWith('@icore/')
|
|
32
|
+
) {
|
|
33
|
+
return callback(); // bundle inline
|
|
34
|
+
}
|
|
35
|
+
return callback(null, 'commonjs ' + request); // keep external
|
|
36
|
+
},
|
|
37
|
+
],
|
|
12
38
|
plugins: [
|
|
13
39
|
new NxAppWebpackPlugin({
|
|
14
40
|
target: 'node',
|
|
@@ -19,6 +45,10 @@ module.exports = {
|
|
|
19
45
|
optimization: false,
|
|
20
46
|
outputHashing: 'none',
|
|
21
47
|
generatePackageJson: true,
|
|
48
|
+
// Keep our externals (above) authoritative — do not let the plugin add
|
|
49
|
+
// its own nodeExternals that would re-externalize @icore/*.
|
|
50
|
+
mergeExternals: true,
|
|
51
|
+
externalDependencies: [],
|
|
22
52
|
sourceMap: true,
|
|
23
53
|
}),
|
|
24
54
|
],
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "payment",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"private": true,
|
|
5
|
+
"dependencies": {
|
|
6
|
+
"@icore/shared": "*",
|
|
7
|
+
"@idevconn/payment": "^1.2.0",
|
|
8
|
+
"@nestjs/common": "^11.1.24",
|
|
9
|
+
"@nestjs/config": "^4.0.4",
|
|
10
|
+
"@nestjs/core": "^11.1.24",
|
|
11
|
+
"@nestjs/microservices": "^11.1.24",
|
|
12
|
+
"reflect-metadata": "^0.2.2",
|
|
13
|
+
"rxjs": "^7.8.2",
|
|
14
|
+
"tslib": "^2.3.0"
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
const { NxAppWebpackPlugin } = require('@nx/webpack/app-plugin');
|
|
2
|
+
const { TsconfigPathsPlugin } = require('tsconfig-paths-webpack-plugin');
|
|
2
3
|
const { join } = require('path');
|
|
3
4
|
|
|
4
5
|
module.exports = {
|
|
@@ -9,6 +10,31 @@ module.exports = {
|
|
|
9
10
|
devtoolModuleFilenameTemplate: '[absolute-resource-path]',
|
|
10
11
|
}),
|
|
11
12
|
},
|
|
13
|
+
resolve: {
|
|
14
|
+
// Resolve @icore/* via tsconfig paths so webpack can bundle them inline.
|
|
15
|
+
// nx skips its own tsconfig-paths plugin on "TS solution" workspaces, so we
|
|
16
|
+
// wire the standalone plugin explicitly (it follows extends → tsconfig.base).
|
|
17
|
+
plugins: [new TsconfigPathsPlugin({ configFile: join(__dirname, 'tsconfig.app.json') })],
|
|
18
|
+
},
|
|
19
|
+
// Keep every npm package external EXCEPT @icore/* workspace packages, which
|
|
20
|
+
// are bundled inline. @icore/* are workspace-internal: at runtime the package
|
|
21
|
+
// manager symlinks them to their TS source dir (not the compiled dist), so an
|
|
22
|
+
// external require('@icore/shared') fails ("Cannot find module './env'").
|
|
23
|
+
// Bundling removes runtime workspace resolution entirely — works identically
|
|
24
|
+
// on yarn / npm / pnpm.
|
|
25
|
+
externals: [
|
|
26
|
+
function ({ request }, callback) {
|
|
27
|
+
if (
|
|
28
|
+
!request ||
|
|
29
|
+
request.startsWith('.') ||
|
|
30
|
+
request.startsWith('/') ||
|
|
31
|
+
request.startsWith('@icore/')
|
|
32
|
+
) {
|
|
33
|
+
return callback(); // bundle inline
|
|
34
|
+
}
|
|
35
|
+
return callback(null, 'commonjs ' + request); // keep external
|
|
36
|
+
},
|
|
37
|
+
],
|
|
12
38
|
plugins: [
|
|
13
39
|
new NxAppWebpackPlugin({
|
|
14
40
|
target: 'node',
|
|
@@ -19,6 +45,10 @@ module.exports = {
|
|
|
19
45
|
optimization: false,
|
|
20
46
|
outputHashing: 'none',
|
|
21
47
|
generatePackageJson: true,
|
|
48
|
+
// Keep our externals (above) authoritative — do not let the plugin add
|
|
49
|
+
// its own nodeExternals that would re-externalize @icore/*.
|
|
50
|
+
mergeExternals: true,
|
|
51
|
+
externalDependencies: [],
|
|
22
52
|
sourceMap: true,
|
|
23
53
|
}),
|
|
24
54
|
],
|
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
"@icore/storage-cloudinary": "*",
|
|
9
9
|
"@icore/storage-firebase": "*",
|
|
10
10
|
"@icore/storage-supabase": "*",
|
|
11
|
-
"cloudinary": "^2.0.0",
|
|
12
11
|
"@nestjs/common": "^11.1.24",
|
|
13
12
|
"@nestjs/config": "^4.0.4",
|
|
14
13
|
"@nestjs/core": "^11.1.24",
|
|
15
14
|
"@nestjs/microservices": "^11.1.24",
|
|
16
15
|
"@supabase/supabase-js": "^2.106.2",
|
|
16
|
+
"cloudinary": "^2.0.0",
|
|
17
17
|
"reflect-metadata": "^0.2.2",
|
|
18
18
|
"rxjs": "^7.8.2",
|
|
19
19
|
"tslib": "^2.3.0"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
const { NxAppWebpackPlugin } = require('@nx/webpack/app-plugin');
|
|
2
|
+
const { TsconfigPathsPlugin } = require('tsconfig-paths-webpack-plugin');
|
|
2
3
|
const { join } = require('path');
|
|
3
4
|
|
|
4
5
|
module.exports = {
|
|
@@ -9,6 +10,31 @@ module.exports = {
|
|
|
9
10
|
devtoolModuleFilenameTemplate: '[absolute-resource-path]',
|
|
10
11
|
}),
|
|
11
12
|
},
|
|
13
|
+
resolve: {
|
|
14
|
+
// Resolve @icore/* via tsconfig paths so webpack can bundle them inline.
|
|
15
|
+
// nx skips its own tsconfig-paths plugin on "TS solution" workspaces, so we
|
|
16
|
+
// wire the standalone plugin explicitly (it follows extends → tsconfig.base).
|
|
17
|
+
plugins: [new TsconfigPathsPlugin({ configFile: join(__dirname, 'tsconfig.app.json') })],
|
|
18
|
+
},
|
|
19
|
+
// Keep every npm package external EXCEPT @icore/* workspace packages, which
|
|
20
|
+
// are bundled inline. @icore/* are workspace-internal: at runtime the package
|
|
21
|
+
// manager symlinks them to their TS source dir (not the compiled dist), so an
|
|
22
|
+
// external require('@icore/shared') fails ("Cannot find module './env'").
|
|
23
|
+
// Bundling removes runtime workspace resolution entirely — works identically
|
|
24
|
+
// on yarn / npm / pnpm.
|
|
25
|
+
externals: [
|
|
26
|
+
function ({ request }, callback) {
|
|
27
|
+
if (
|
|
28
|
+
!request ||
|
|
29
|
+
request.startsWith('.') ||
|
|
30
|
+
request.startsWith('/') ||
|
|
31
|
+
request.startsWith('@icore/')
|
|
32
|
+
) {
|
|
33
|
+
return callback(); // bundle inline
|
|
34
|
+
}
|
|
35
|
+
return callback(null, 'commonjs ' + request); // keep external
|
|
36
|
+
},
|
|
37
|
+
],
|
|
12
38
|
plugins: [
|
|
13
39
|
new NxAppWebpackPlugin({
|
|
14
40
|
target: 'node',
|
|
@@ -19,6 +45,10 @@ module.exports = {
|
|
|
19
45
|
optimization: false,
|
|
20
46
|
outputHashing: 'none',
|
|
21
47
|
generatePackageJson: true,
|
|
48
|
+
// Keep our externals (above) authoritative — do not let the plugin add
|
|
49
|
+
// its own nodeExternals that would re-externalize @icore/*.
|
|
50
|
+
mergeExternals: true,
|
|
51
|
+
externalDependencies: [],
|
|
22
52
|
sourceMap: true,
|
|
23
53
|
}),
|
|
24
54
|
],
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "client-shadcn",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"private": true,
|
|
5
|
+
"dependencies": {
|
|
6
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
7
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
8
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
9
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
10
|
+
"@tailwindcss/vite": "^4.3.0",
|
|
11
|
+
"class-variance-authority": "^0.7.1",
|
|
12
|
+
"clsx": "^2.1.1",
|
|
13
|
+
"lucide-react": "^1.17.0",
|
|
14
|
+
"sonner": "^2.0.7",
|
|
15
|
+
"tailwind-merge": "^3.6.0",
|
|
16
|
+
"tailwindcss": "^4"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -1,19 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { createFileRoute, useNavigate } from '@tanstack/react-router';
|
|
2
2
|
import { SyntheticEvent, useState } from 'react';
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
SyntheticEvent,
|
|
11
|
-
Card,
|
|
12
|
-
CardContent,
|
|
13
|
-
CardDescription,
|
|
14
|
-
CardHeader,
|
|
15
|
-
CardTitle,
|
|
16
|
-
} from '../components/ui/card';
|
|
3
|
+
import { useTranslation } from 'react-i18next';
|
|
4
|
+
import { useAuthStore, useNotify } from '@icore/template-shared';
|
|
5
|
+
import { api } from '../main';
|
|
6
|
+
import { Button } from '../components/ui/button';
|
|
7
|
+
import { Input } from '../components/ui/input';
|
|
8
|
+
import { Label } from '../components/ui/label';
|
|
9
|
+
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '../components/ui/card';
|
|
17
10
|
|
|
18
11
|
type Mode = 'password' | 'magicLinkRequest' | 'magicLinkSent';
|
|
19
12
|
|
|
@@ -4,15 +4,15 @@
|
|
|
4
4
|
"private": true,
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./src/index.js",
|
|
7
|
-
"types": "./src/index.
|
|
7
|
+
"types": "./src/index.ts",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
10
|
"require": "./src/index.js",
|
|
11
|
-
"types": "./src/index.
|
|
11
|
+
"types": "./src/index.ts"
|
|
12
12
|
},
|
|
13
13
|
"./client": {
|
|
14
14
|
"require": "./src/client.js",
|
|
15
|
-
"types": "./src/client.
|
|
15
|
+
"types": "./src/client.ts"
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
package/templates/package.json
CHANGED
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"prepare": "husky"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@icore/vite-plugins": "workspace:*",
|
|
27
26
|
"@eslint/js": "^9.18.0",
|
|
27
|
+
"@icore/vite-plugins": "workspace:*",
|
|
28
28
|
"@nestjs/schematics": "^11.0.0",
|
|
29
29
|
"@nestjs/testing": "^11.0.0",
|
|
30
30
|
"@nx/devkit": "22.7.5",
|
|
@@ -64,14 +64,12 @@
|
|
|
64
64
|
"eslint-plugin-react": "7.35.0",
|
|
65
65
|
"eslint-plugin-react-hooks": "5.0.0",
|
|
66
66
|
"husky": "^9.1.7",
|
|
67
|
-
"ioredis-mock": "^8.13.1",
|
|
68
67
|
"jest": "~30.3.0",
|
|
69
68
|
"jest-environment-node": "~30.3.0",
|
|
70
69
|
"jest-util": "~30.3.0",
|
|
71
70
|
"jiti": "2.4.2",
|
|
72
71
|
"jsdom": "~22.1.0",
|
|
73
72
|
"jsonc-eslint-parser": "^2.1.0",
|
|
74
|
-
"less": "^4.0.0",
|
|
75
73
|
"lint-staged": "^17.0.5",
|
|
76
74
|
"nx": "22.7.5",
|
|
77
75
|
"prettier": "~3.6.2",
|
|
@@ -79,6 +77,7 @@
|
|
|
79
77
|
"react-dom": "^19.2.6",
|
|
80
78
|
"ts-jest": "^29.4.0",
|
|
81
79
|
"ts-node": "10.9.1",
|
|
80
|
+
"tsconfig-paths-webpack-plugin": "^4.2.0",
|
|
82
81
|
"tslib": "^2.3.0",
|
|
83
82
|
"typescript": "^5.7.0",
|
|
84
83
|
"typescript-eslint": "^8.60.0",
|
|
@@ -96,18 +95,10 @@
|
|
|
96
95
|
]
|
|
97
96
|
},
|
|
98
97
|
"dependencies": {
|
|
99
|
-
"@ant-design/icons": "^6",
|
|
100
|
-
"@bull-board/api": "^7.1.5",
|
|
101
|
-
"@bull-board/express": "^7.1.5",
|
|
102
98
|
"@casl/ability": "^7",
|
|
103
99
|
"@casl/react": "^7.0.0",
|
|
104
|
-
"@emotion/react": "^11",
|
|
105
|
-
"@emotion/styled": "^11",
|
|
106
100
|
"@idevconn/api-client": "^0.3.0",
|
|
107
|
-
"@idevconn/payment": "^1.2.0",
|
|
108
101
|
"@idevconn/use-draft": "^0.2.0",
|
|
109
|
-
"@mui/icons-material": "^6",
|
|
110
|
-
"@mui/material": "^6",
|
|
111
102
|
"@nestjs/common": "^11.1.24",
|
|
112
103
|
"@nestjs/config": "^4.0.4",
|
|
113
104
|
"@nestjs/core": "^11.1.24",
|
|
@@ -115,34 +106,18 @@
|
|
|
115
106
|
"@nestjs/platform-express": "^11.0.0",
|
|
116
107
|
"@nestjs/swagger": "^11.4.4",
|
|
117
108
|
"@nestjs/throttler": "^6.5.0",
|
|
118
|
-
"@radix-ui/react-dialog": "^1.1.15",
|
|
119
|
-
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
120
|
-
"@radix-ui/react-label": "^2.1.8",
|
|
121
|
-
"@radix-ui/react-slot": "^1.2.4",
|
|
122
109
|
"@supabase/supabase-js": "^2.106.2",
|
|
123
|
-
"@tailwindcss/vite": "^4.3.0",
|
|
124
110
|
"@tanstack/react-query": "^5.100.14",
|
|
125
111
|
"@tanstack/react-router": "^1.170.8",
|
|
126
|
-
"antd": "^6",
|
|
127
112
|
"axios": "^1.6.0",
|
|
128
|
-
"bullmq": "^5.77.6",
|
|
129
|
-
"class-variance-authority": "^0.7.1",
|
|
130
113
|
"classnames": "^2.5.1",
|
|
131
114
|
"cloudinary": "^2.10.0",
|
|
132
|
-
"clsx": "^2.1.1",
|
|
133
115
|
"cookie-parser": "^1.4.7",
|
|
134
116
|
"dayjs": "^1.11.21",
|
|
135
|
-
"firebase-admin": "^13.10.0",
|
|
136
117
|
"i18next": "^26.3.0",
|
|
137
|
-
"ioredis": "^5.11.0",
|
|
138
|
-
"lucide-react": "^1.17.0",
|
|
139
118
|
"react-i18next": "^17.0.8",
|
|
140
|
-
"react-router-dom": "6.30.3",
|
|
141
119
|
"reflect-metadata": "^0.2.2",
|
|
142
120
|
"rxjs": "^7.8.2",
|
|
143
|
-
"sonner": "^2.0.7",
|
|
144
|
-
"tailwind-merge": "^3.6.0",
|
|
145
|
-
"tailwindcss": "^4",
|
|
146
121
|
"zustand": "^5.0.14"
|
|
147
122
|
}
|
|
148
123
|
}
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"prepare": "husky"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@icore/vite-plugins": "workspace:*",
|
|
27
26
|
"@eslint/js": "^9.18.0",
|
|
27
|
+
"@icore/vite-plugins": "workspace:*",
|
|
28
28
|
"@nestjs/schematics": "^11.0.0",
|
|
29
29
|
"@nestjs/testing": "^11.0.0",
|
|
30
30
|
"@nx/devkit": "22.7.5",
|
|
@@ -64,14 +64,12 @@
|
|
|
64
64
|
"eslint-plugin-react": "7.35.0",
|
|
65
65
|
"eslint-plugin-react-hooks": "5.0.0",
|
|
66
66
|
"husky": "^9.1.7",
|
|
67
|
-
"ioredis-mock": "^8.13.1",
|
|
68
67
|
"jest": "~30.3.0",
|
|
69
68
|
"jest-environment-node": "~30.3.0",
|
|
70
69
|
"jest-util": "~30.3.0",
|
|
71
70
|
"jiti": "2.4.2",
|
|
72
71
|
"jsdom": "~22.1.0",
|
|
73
72
|
"jsonc-eslint-parser": "^2.1.0",
|
|
74
|
-
"less": "^4.0.0",
|
|
75
73
|
"lint-staged": "^17.0.5",
|
|
76
74
|
"nx": "22.7.5",
|
|
77
75
|
"prettier": "~3.6.2",
|
|
@@ -79,6 +77,7 @@
|
|
|
79
77
|
"react-dom": "^19.2.6",
|
|
80
78
|
"ts-jest": "^29.4.0",
|
|
81
79
|
"ts-node": "10.9.1",
|
|
80
|
+
"tsconfig-paths-webpack-plugin": "^4.2.0",
|
|
82
81
|
"tslib": "^2.3.0",
|
|
83
82
|
"typescript": "^5.7.0",
|
|
84
83
|
"typescript-eslint": "^8.60.0",
|
|
@@ -96,18 +95,10 @@
|
|
|
96
95
|
]
|
|
97
96
|
},
|
|
98
97
|
"dependencies": {
|
|
99
|
-
"@ant-design/icons": "^6",
|
|
100
|
-
"@bull-board/api": "^7.1.5",
|
|
101
|
-
"@bull-board/express": "^7.1.5",
|
|
102
98
|
"@casl/ability": "^7",
|
|
103
99
|
"@casl/react": "^7.0.0",
|
|
104
|
-
"@emotion/react": "^11",
|
|
105
|
-
"@emotion/styled": "^11",
|
|
106
100
|
"@idevconn/api-client": "^0.3.0",
|
|
107
|
-
"@idevconn/payment": "^1.2.0",
|
|
108
101
|
"@idevconn/use-draft": "^0.2.0",
|
|
109
|
-
"@mui/icons-material": "^6",
|
|
110
|
-
"@mui/material": "^6",
|
|
111
102
|
"@nestjs/common": "^11.1.24",
|
|
112
103
|
"@nestjs/config": "^4.0.4",
|
|
113
104
|
"@nestjs/core": "^11.1.24",
|
|
@@ -115,34 +106,18 @@
|
|
|
115
106
|
"@nestjs/platform-express": "^11.0.0",
|
|
116
107
|
"@nestjs/swagger": "^11.4.4",
|
|
117
108
|
"@nestjs/throttler": "^6.5.0",
|
|
118
|
-
"@radix-ui/react-dialog": "^1.1.15",
|
|
119
|
-
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
120
|
-
"@radix-ui/react-label": "^2.1.8",
|
|
121
|
-
"@radix-ui/react-slot": "^1.2.4",
|
|
122
109
|
"@supabase/supabase-js": "^2.106.2",
|
|
123
|
-
"@tailwindcss/vite": "^4.3.0",
|
|
124
110
|
"@tanstack/react-query": "^5.100.14",
|
|
125
111
|
"@tanstack/react-router": "^1.170.8",
|
|
126
|
-
"antd": "^6",
|
|
127
112
|
"axios": "^1.6.0",
|
|
128
|
-
"bullmq": "^5.77.6",
|
|
129
|
-
"class-variance-authority": "^0.7.1",
|
|
130
113
|
"classnames": "^2.5.1",
|
|
131
114
|
"cloudinary": "^2.10.0",
|
|
132
|
-
"clsx": "^2.1.1",
|
|
133
115
|
"cookie-parser": "^1.4.7",
|
|
134
116
|
"dayjs": "^1.11.21",
|
|
135
|
-
"firebase-admin": "^13.10.0",
|
|
136
117
|
"i18next": "^26.3.0",
|
|
137
|
-
"ioredis": "^5.11.0",
|
|
138
|
-
"lucide-react": "^1.17.0",
|
|
139
118
|
"react-i18next": "^17.0.8",
|
|
140
|
-
"react-router-dom": "6.30.3",
|
|
141
119
|
"reflect-metadata": "^0.2.2",
|
|
142
120
|
"rxjs": "^7.8.2",
|
|
143
|
-
"sonner": "^2.0.7",
|
|
144
|
-
"tailwind-merge": "^3.6.0",
|
|
145
|
-
"tailwindcss": "^4",
|
|
146
121
|
"zustand": "^5.0.14"
|
|
147
122
|
}
|
|
148
123
|
}
|