@common-stack/frontend-stack-react 6.0.1-alpha.5 → 6.0.2-alpha.1
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.
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
export declare const config: Readonly<{
|
|
2
2
|
GA_ID: string;
|
|
3
|
-
GRAPHQL_URL:
|
|
4
|
-
LOCAL_GRAPHQL_URL:
|
|
5
|
-
GRAPHQL_SUBSCRIPTION_URL:
|
|
3
|
+
GRAPHQL_URL: string;
|
|
4
|
+
LOCAL_GRAPHQL_URL: string;
|
|
5
|
+
GRAPHQL_SUBSCRIPTION_URL: string;
|
|
6
6
|
LOG_LEVEL: string;
|
|
7
|
-
}
|
|
8
|
-
readonly [varName: string]: string;
|
|
9
|
-
};
|
|
7
|
+
} & import("envalid").CleanedEnvAccessors>;
|
|
@@ -6,20 +6,18 @@ import type { ClusterNode } from 'ioredis';
|
|
|
6
6
|
export declare const config: Readonly<{
|
|
7
7
|
SENTRY_DSN_FRONTEND: string;
|
|
8
8
|
NODE_ENV: string;
|
|
9
|
-
BACKEND_URL:
|
|
10
|
-
LOCAL_BACKEND_URL:
|
|
11
|
-
LOCAL_GRAPHQL_URL:
|
|
12
|
-
GRAPHQL_URL:
|
|
9
|
+
BACKEND_URL: string;
|
|
10
|
+
LOCAL_BACKEND_URL: string;
|
|
11
|
+
LOCAL_GRAPHQL_URL: string;
|
|
12
|
+
GRAPHQL_URL: string;
|
|
13
13
|
LOG_LEVEL: string;
|
|
14
14
|
REDIS_CLUSTER_URL: ClusterNode[];
|
|
15
15
|
REDIS_URL: string;
|
|
16
16
|
REDIS_CLUSTER_ENABLED: boolean;
|
|
17
17
|
REDIS_SENTINEL_ENABLED: boolean;
|
|
18
18
|
APP_NAME: string;
|
|
19
|
-
CLIENT_URL:
|
|
19
|
+
CLIENT_URL: string;
|
|
20
20
|
CONNECTION_ID: string;
|
|
21
21
|
NAMESPACE: string;
|
|
22
22
|
ZIPKIN_URL: string;
|
|
23
|
-
}
|
|
24
|
-
readonly [varName: string]: string;
|
|
25
|
-
};
|
|
23
|
+
} & import("envalid").CleanedEnvAccessors>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@common-stack/frontend-stack-react",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.2-alpha.1",
|
|
4
4
|
"description": "Client Module for react app",
|
|
5
5
|
"homepage": "https://github.com/cdmbase/fullstack-pro#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -29,12 +29,26 @@
|
|
|
29
29
|
"watch": "npm run build:lib:watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@
|
|
33
|
-
"@
|
|
32
|
+
"@apollo/client": "^3.9.0",
|
|
33
|
+
"@cdm-logger/client": "^9.0.3",
|
|
34
|
+
"@cdm-logger/server": "^9.0.3",
|
|
35
|
+
"@cdmbase/redux-data-router": "^1.0.10",
|
|
36
|
+
"@common-stack/client-core": "6.0.2-alpha.1",
|
|
37
|
+
"@common-stack/client-react": "6.0.2-alpha.1",
|
|
38
|
+
"@common-stack/components-pro": "6.0.2-alpha.1",
|
|
39
|
+
"@common-stack/core": "6.0.2-alpha.1",
|
|
40
|
+
"@common-stack/remix-router-redux": "6.0.2-alpha.1",
|
|
41
|
+
"@common-stack/server-core": "6.0.2-alpha.1",
|
|
34
42
|
"@reduxjs/toolkit": "^2.2.6",
|
|
43
|
+
"@remix-run/express": "^2.8.1",
|
|
44
|
+
"@remix-run/node": "^2.8.1",
|
|
45
|
+
"@remix-run/react": "^2.8.1",
|
|
35
46
|
"@sentry/browser": "~5.11.2",
|
|
36
47
|
"cors": "^2.8.5",
|
|
37
48
|
"cross-fetch": "^4.0.0",
|
|
49
|
+
"dotenv": "^8.2.0",
|
|
50
|
+
"envalid": "~7.2.2",
|
|
51
|
+
"express": "^4.18.2",
|
|
38
52
|
"graphql": "^16.0.0",
|
|
39
53
|
"graphql-tag": "^2.11.0",
|
|
40
54
|
"graphql-ws": "^5.11.2",
|
|
@@ -42,9 +56,23 @@
|
|
|
42
56
|
"i18next-browser-languagedetector": "^8.0.0",
|
|
43
57
|
"i18next-fs-backend": "^2.3.1",
|
|
44
58
|
"i18next-http-backend": "^2.5.2",
|
|
59
|
+
"inversify": "^6.0.2",
|
|
60
|
+
"ioredis": "^5.4.1",
|
|
61
|
+
"isbot": "^4.1.0",
|
|
45
62
|
"isomorphic-fetch": "^2.2.1",
|
|
63
|
+
"prop-types": "^15.8.1",
|
|
64
|
+
"react": "18.2.0",
|
|
65
|
+
"react-dom": "18.2.0",
|
|
46
66
|
"react-i18next": "^14.1.0",
|
|
47
|
-
"
|
|
67
|
+
"react-redux": "^9.1.1",
|
|
68
|
+
"redux-observable": "^1.2.0",
|
|
69
|
+
"redux-persist": "^6.0.0",
|
|
70
|
+
"redux-persist-transform-filter": "^0.0.20",
|
|
71
|
+
"reflect-metadata": "^0.1.13",
|
|
72
|
+
"remix-i18next": "~6.1.0",
|
|
73
|
+
"serialize-javascript": "^6.0.0",
|
|
74
|
+
"ts-deepmerge": "^7.0.0",
|
|
75
|
+
"ts-invariant": "^0.10.3"
|
|
48
76
|
},
|
|
49
77
|
"devDependencies": {
|
|
50
78
|
"@admin-layout/ant-ui": "^7.3.7-alpha.4",
|
|
@@ -53,7 +81,6 @@
|
|
|
53
81
|
"@emotion/react": "^11.0.0",
|
|
54
82
|
"@emotion/server": "^11.0.0",
|
|
55
83
|
"antd": "^5.10.1",
|
|
56
|
-
"isbot": "^4.1.0",
|
|
57
84
|
"jest-fetch-mock": "^3.0.3",
|
|
58
85
|
"vite": "^5.2.12"
|
|
59
86
|
},
|
|
@@ -69,5 +96,5 @@
|
|
|
69
96
|
"typescript": {
|
|
70
97
|
"definition": "lib/index.d.ts"
|
|
71
98
|
},
|
|
72
|
-
"gitHead": "
|
|
99
|
+
"gitHead": "c13fa6b22a45926ce70f69b5d1215bad58bf40bb"
|
|
73
100
|
}
|