varius official platform source code.
Revision | 9a05c63f5deef8c6546f7c3988843d7facf30bab (tree) |
---|---|
Time | 2023-03-22 23:32:39 |
Author | NknightA <n.knight.pc0627@gmai...> |
Commiter | NknightA |
update.
@@ -0,0 +1,5 @@ | ||
1 | +@types/express @types/node @types/react @types/react-dom | |
2 | + | |
3 | +eslint eslint-config-next | |
4 | + | |
5 | +next react react-dom typescript | |
\ No newline at end of file |
@@ -0,0 +1,3 @@ | ||
1 | +{ | |
2 | + "API_ORIGIN": "http://localhost:4100" | |
3 | +} |
@@ -0,0 +1,12 @@ | ||
1 | +"use strict"; | |
2 | +var __importDefault = (this && this.__importDefault) || function (mod) { | |
3 | + return (mod && mod.__esModule) ? mod : { "default": mod }; | |
4 | +}; | |
5 | +Object.defineProperty(exports, "__esModule", { value: true }); | |
6 | +var background_module_sass_1 = __importDefault(require("./background.module.sass")); | |
7 | +function Background() { | |
8 | + return (<div className={background_module_sass_1.default.Main}> | |
9 | + <h1>Awesome METAVERSE...</h1> | |
10 | + </div>); | |
11 | +} | |
12 | +exports.default = Background; |
@@ -0,0 +1,21 @@ | ||
1 | +"use strict"; | |
2 | +Object.defineProperty(exports, "__esModule", { value: true }); | |
3 | +exports.Box = void 0; | |
4 | +var Box = function (_a) { | |
5 | + var children = _a.children, w = _a.w, display = _a.display, bgColor = _a.bgColor, h = _a.h, m = _a.m, p = _a.p, jc = _a.jc, ai = _a.ai, textSize = _a.textSize; | |
6 | + return (<div style={{ | |
7 | + backgroundColor: bgColor, | |
8 | + color: '#000', | |
9 | + height: h, | |
10 | + width: w, | |
11 | + display: display, | |
12 | + justifyContent: jc, | |
13 | + alignItems: ai, | |
14 | + padding: p, | |
15 | + margin: m, | |
16 | + fontSize: textSize | |
17 | + }}> | |
18 | + {children} | |
19 | + </div>); | |
20 | +}; | |
21 | +exports.Box = Box; |
@@ -0,0 +1,8 @@ | ||
1 | +"use strict"; | |
2 | +Object.defineProperty(exports, "__esModule", { value: true }); | |
3 | +require("@/styles/globals.css"); | |
4 | +function App(_a) { | |
5 | + var Component = _a.Component, pageProps = _a.pageProps; | |
6 | + return <Component {...pageProps}/>; | |
7 | +} | |
8 | +exports.default = App; |
@@ -0,0 +1,13 @@ | ||
1 | +"use strict"; | |
2 | +Object.defineProperty(exports, "__esModule", { value: true }); | |
3 | +var document_1 = require("next/document"); | |
4 | +function Document() { | |
5 | + return (<document_1.Html lang="en"> | |
6 | + <document_1.Head /> | |
7 | + <body> | |
8 | + <document_1.Main /> | |
9 | + <document_1.NextScript /> | |
10 | + </body> | |
11 | + </document_1.Html>); | |
12 | +} | |
13 | +exports.default = Document; |
@@ -0,0 +1,6 @@ | ||
1 | +"use strict"; | |
2 | +Object.defineProperty(exports, "__esModule", { value: true }); | |
3 | +function handler(req, res) { | |
4 | + res.status(200).json({ name: 'John Doe' }); | |
5 | +} | |
6 | +exports.default = handler; |
@@ -0,0 +1,27 @@ | ||
1 | +"use strict"; | |
2 | +var __importDefault = (this && this.__importDefault) || function (mod) { | |
3 | + return (mod && mod.__esModule) ? mod : { "default": mod }; | |
4 | +}; | |
5 | +Object.defineProperty(exports, "__esModule", { value: true }); | |
6 | +var head_1 = __importDefault(require("next/head")); | |
7 | +var image_1 = __importDefault(require("next/image")); | |
8 | +//import { Inter } from 'next/font/google' | |
9 | +var Home_module_css_1 = __importDefault(require("@/styles/Home.module.css")); | |
10 | +//const inter = Inter({ subsets: ['latin'] }) | |
11 | +function Home() { | |
12 | + return (<> | |
13 | + <head_1.default> | |
14 | + <title>Create Next App</title> | |
15 | + <meta name="description" content="Generated by create next app"/> | |
16 | + <meta name="viewport" content="width=device-width, initial-scale=1"/> | |
17 | + <link rel="icon" href="/favicon.ico"/> | |
18 | + </head_1.default> | |
19 | + <main className={Home_module_css_1.default.main}> | |
20 | + <image_1.default src="/image.jpg" alt="Logo" className={Home_module_css_1.default.vercelLogo} width={500} height={500} priority/> | |
21 | + | |
22 | + <p>App mode : {process.env.NODE_ENV}</p> | |
23 | + <p>Running mode{process.env.APP_ENV}</p> | |
24 | + </main> | |
25 | + </>); | |
26 | +} | |
27 | +exports.default = Home; |
@@ -0,0 +1,72 @@ | ||
1 | +"use strict"; | |
2 | +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | |
3 | + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } | |
4 | + return new (P || (P = Promise))(function (resolve, reject) { | |
5 | + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } | |
6 | + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } | |
7 | + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } | |
8 | + step((generator = generator.apply(thisArg, _arguments || [])).next()); | |
9 | + }); | |
10 | +}; | |
11 | +var __generator = (this && this.__generator) || function (thisArg, body) { | |
12 | + var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; | |
13 | + return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; | |
14 | + function verb(n) { return function (v) { return step([n, v]); }; } | |
15 | + function step(op) { | |
16 | + if (f) throw new TypeError("Generator is already executing."); | |
17 | + while (g && (g = 0, op[0] && (_ = 0)), _) try { | |
18 | + if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; | |
19 | + if (y = 0, t) op = [op[0] & 2, t.value]; | |
20 | + switch (op[0]) { | |
21 | + case 0: case 1: t = op; break; | |
22 | + case 4: _.label++; return { value: op[1], done: false }; | |
23 | + case 5: _.label++; y = op[1]; op = [0]; continue; | |
24 | + case 7: op = _.ops.pop(); _.trys.pop(); continue; | |
25 | + default: | |
26 | + if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } | |
27 | + if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } | |
28 | + if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } | |
29 | + if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } | |
30 | + if (t[2]) _.ops.pop(); | |
31 | + _.trys.pop(); continue; | |
32 | + } | |
33 | + op = body.call(thisArg, _); | |
34 | + } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } | |
35 | + if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; | |
36 | + } | |
37 | +}; | |
38 | +var __importDefault = (this && this.__importDefault) || function (mod) { | |
39 | + return (mod && mod.__esModule) ? mod : { "default": mod }; | |
40 | +}; | |
41 | +Object.defineProperty(exports, "__esModule", { value: true }); | |
42 | +var express_1 = __importDefault(require("express")); | |
43 | +var next_1 = __importDefault(require("next")); | |
44 | +var dev = process.env.NODE_ENV === "development"; | |
45 | +var port = 4100; | |
46 | +var app = (0, next_1.default)({ dev: dev }); | |
47 | +var handle = app.getRequestHandler(); | |
48 | +(function () { return __awaiter(void 0, void 0, void 0, function () { | |
49 | + var server, e_1; | |
50 | + return __generator(this, function (_a) { | |
51 | + switch (_a.label) { | |
52 | + case 0: | |
53 | + _a.trys.push([0, 2, , 3]); | |
54 | + return [4 /*yield*/, app.prepare()]; | |
55 | + case 1: | |
56 | + _a.sent(); | |
57 | + server = (0, express_1.default)(); | |
58 | + server.all("*", function (req, res) { | |
59 | + return handle(req, res); | |
60 | + }); | |
61 | + server.listen(port, function () { | |
62 | + console.log("".concat(port, "\u3067\u8D77\u52D5\u4E2D")); | |
63 | + }); | |
64 | + return [3 /*break*/, 3]; | |
65 | + case 2: | |
66 | + e_1 = _a.sent(); | |
67 | + console.error(e_1); | |
68 | + return [3 /*break*/, 3]; | |
69 | + case 3: return [2 /*return*/]; | |
70 | + } | |
71 | + }); | |
72 | +}); })(); |
@@ -1,6 +1,7 @@ | ||
1 | 1 | /** @type {import('next').NextConfig} */ |
2 | 2 | const nextConfig = { |
3 | 3 | reactStrictMode: true, |
4 | + ...import(`./config/${process.env.APP_ENV || 'local'}`.json) | |
4 | 5 | } |
5 | 6 | |
6 | 7 | module.exports = nextConfig |
@@ -7,16 +7,18 @@ | ||
7 | 7 | "pre-build": "tsc -p tsconfig.server.json" |
8 | 8 | }, |
9 | 9 | "dependencies": { |
10 | + "@reduxjs/toolkit": "^1.9.3", | |
10 | 11 | "@types/express": "^4.17.17", |
11 | - "@types/node": "18.15.5", | |
12 | - "@types/react": "18.0.28", | |
13 | - "@types/react-dom": "18.0.11", | |
14 | - "eslint": "8.36.0", | |
15 | - "eslint-config-next": "13.2.4", | |
16 | - "next": "13.2.4", | |
17 | - "react": "18.2.0", | |
18 | - "react-dom": "18.2.0", | |
19 | - "typescript": "5.0.2" | |
12 | + "@types/node": "^18.15.5", | |
13 | + "@types/react": "^18.0.28", | |
14 | + "@types/react-dom": "^18.0.11", | |
15 | + "dotenv": "^16.0.3", | |
16 | + "eslint": "^8.36.0", | |
17 | + "eslint-config-next": "^13.2.4", | |
18 | + "next": "^13.2.4", | |
19 | + "react": "^18.2.0", | |
20 | + "react-dom": "^18.2.0", | |
21 | + "typescript": "^5.0.2" | |
20 | 22 | }, |
21 | 23 | "devDependencies": { |
22 | 24 | "cross-env": "^7.0.3", |
@@ -3,7 +3,12 @@ import { Html, Head, Main, NextScript } from 'next/document' | ||
3 | 3 | export default function Document() { |
4 | 4 | return ( |
5 | 5 | <Html lang="en"> |
6 | - <Head /> | |
6 | + <Head > | |
7 | + <div> | |
8 | + <h1>VARIUS App</h1> | |
9 | + <p>App mode : {process.env.NODE_ENV}</p> | |
10 | + </div> | |
11 | + </Head> | |
7 | 12 | <body> |
8 | 13 | <Main /> |
9 | 14 | <NextScript /> |
@@ -1,15 +1,15 @@ | ||
1 | 1 | import Head from 'next/head' |
2 | 2 | import Image from 'next/image' |
3 | -import { Inter } from 'next/font/google' | |
3 | +//import { Inter } from 'next/font/google' | |
4 | 4 | import styles from '@/styles/Home.module.css' |
5 | 5 | |
6 | -const inter = Inter({ subsets: ['latin'] }) | |
6 | +//const inter = Inter({ subsets: ['latin'] }) | |
7 | 7 | |
8 | 8 | export default function Home() { |
9 | 9 | return ( |
10 | 10 | <> |
11 | 11 | <Head> |
12 | - <title>Create Next App</title> | |
12 | + <title>V : {process.env.NODE_ENV} mode</title> | |
13 | 13 | <meta name="description" content="Generated by create next app" /> |
14 | 14 | <meta name="viewport" content="width=device-width, initial-scale=1" /> |
15 | 15 | <link rel="icon" href="/favicon.ico" /> |
@@ -23,6 +23,8 @@ export default function Home() { | ||
23 | 23 | height={500} |
24 | 24 | priority |
25 | 25 | /> |
26 | + <p>insert code is : {' {process.env.NODE_ENV}'}.</p> | |
27 | + <p>How to insert code is edit index.tsx</p> | |
26 | 28 | </main> |
27 | 29 | </> |
28 | 30 | ) |
@@ -0,0 +1,6 @@ | ||
1 | +{ | |
2 | + "configulations": { | |
3 | + "mode":"", | |
4 | + "2": "" | |
5 | + } | |
6 | +} |
@@ -0,0 +1,3 @@ | ||
1 | +import { createStore } from "@reduxjs/toolkit"; | |
2 | + | |
3 | + |
@@ -0,0 +1,4 @@ | ||
1 | +*{ | |
2 | + padding: 0px; | |
3 | + margin: 0px; | |
4 | +} |
@@ -2,7 +2,7 @@ | ||
2 | 2 | # yarn lockfile v1 |
3 | 3 | |
4 | 4 | |
5 | -"@babel/runtime@^7.20.7": | |
5 | +"@babel/runtime@^7.20.7", "@babel/runtime@^7.9.2": | |
6 | 6 | version "7.21.0" |
7 | 7 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.0.tgz#5b55c9d394e5fcf304909a8b00c07dc217b56673" |
8 | 8 | integrity sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw== |
@@ -170,6 +170,16 @@ | ||
170 | 170 | tiny-glob "^0.2.9" |
171 | 171 | tslib "^2.4.0" |
172 | 172 | |
173 | +"@reduxjs/toolkit@^1.9.3": | |
174 | + version "1.9.3" | |
175 | + resolved "https://registry.yarnpkg.com/@reduxjs/toolkit/-/toolkit-1.9.3.tgz#27e1a33072b5a312e4f7fa19247fec160bbb2df9" | |
176 | + integrity sha512-GU2TNBQVofL09VGmuSioNPQIu6Ml0YLf4EJhgj0AvBadRlCGzUWet8372LjvO4fqKZF2vH1xU0htAa7BrK9pZg== | |
177 | + dependencies: | |
178 | + immer "^9.0.16" | |
179 | + redux "^4.2.0" | |
180 | + redux-thunk "^2.4.2" | |
181 | + reselect "^4.1.7" | |
182 | + | |
173 | 183 | "@rushstack/eslint-patch@^1.1.3": |
174 | 184 | version "1.2.0" |
175 | 185 | resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz#8be36a1f66f3265389e90b5f9c9962146758f728" |
@@ -226,7 +236,7 @@ | ||
226 | 236 | resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.1.tgz#5f8f2bca0a5863cb69bc0b0acd88c96cb1d4ae10" |
227 | 237 | integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA== |
228 | 238 | |
229 | -"@types/node@*", "@types/node@18.15.5": | |
239 | +"@types/node@*", "@types/node@^18.15.5": | |
230 | 240 | version "18.15.5" |
231 | 241 | resolved "https://registry.yarnpkg.com/@types/node/-/node-18.15.5.tgz#3af577099a99c61479149b716183e70b5239324a" |
232 | 242 | integrity sha512-Ark2WDjjZO7GmvsyFFf81MXuGTA/d6oP38anyxWOL6EREyBKAxKoFHwBhaZxCfLRLpO8JgVXwqOwSwa7jRcjew== |
@@ -246,14 +256,14 @@ | ||
246 | 256 | resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc" |
247 | 257 | integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw== |
248 | 258 | |
249 | -"@types/react-dom@18.0.11": | |
259 | +"@types/react-dom@^18.0.11": | |
250 | 260 | version "18.0.11" |
251 | 261 | resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.0.11.tgz#321351c1459bc9ca3d216aefc8a167beec334e33" |
252 | 262 | integrity sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw== |
253 | 263 | dependencies: |
254 | 264 | "@types/react" "*" |
255 | 265 | |
256 | -"@types/react@*", "@types/react@18.0.28": | |
266 | +"@types/react@*", "@types/react@^18.0.28": | |
257 | 267 | version "18.0.28" |
258 | 268 | resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.28.tgz#accaeb8b86f4908057ad629a26635fe641480065" |
259 | 269 | integrity sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew== |
@@ -718,6 +728,11 @@ doctrine@^3.0.0: | ||
718 | 728 | dependencies: |
719 | 729 | esutils "^2.0.2" |
720 | 730 | |
731 | +dotenv@^16.0.3: | |
732 | + version "16.0.3" | |
733 | + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.0.3.tgz#115aec42bac5053db3c456db30cc243a5a836a07" | |
734 | + integrity sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ== | |
735 | + | |
721 | 736 | ee-first@1.1.1: |
722 | 737 | version "1.1.1" |
723 | 738 | resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" |
@@ -831,7 +846,7 @@ escape-string-regexp@^4.0.0: | ||
831 | 846 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" |
832 | 847 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== |
833 | 848 | |
834 | -eslint-config-next@13.2.4: | |
849 | +eslint-config-next@^13.2.4: | |
835 | 850 | version "13.2.4" |
836 | 851 | resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-13.2.4.tgz#8aa4d42da3a575a814634ba9c88c8d25266c5fdd" |
837 | 852 | integrity sha512-lunIBhsoeqw6/Lfkd6zPt25w1bn0znLA/JCL+au1HoEpSb4/PpsOYsYtgV/q+YPsoKIOzFyU5xnb04iZnXjUvg== |
@@ -957,7 +972,7 @@ eslint-visitor-keys@^3.3.0: | ||
957 | 972 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" |
958 | 973 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== |
959 | 974 | |
960 | -eslint@8.36.0: | |
975 | +eslint@^8.36.0: | |
961 | 976 | version "8.36.0" |
962 | 977 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.36.0.tgz#1bd72202200a5492f91803b113fb8a83b11285cf" |
963 | 978 | integrity sha512-Y956lmS7vDqomxlaaQAHVmeb4tNMp2FWIvU/RnU5BD3IKMD/MJPr76xdyr68P8tV1iNMvN2mRK0yy3c+UjL+bw== |
@@ -1404,6 +1419,11 @@ ignore@^5.2.0: | ||
1404 | 1419 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" |
1405 | 1420 | integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== |
1406 | 1421 | |
1422 | +immer@^9.0.16: | |
1423 | + version "9.0.19" | |
1424 | + resolved "https://registry.yarnpkg.com/immer/-/immer-9.0.19.tgz#67fb97310555690b5f9cd8380d38fc0aabb6b38b" | |
1425 | + integrity sha512-eY+Y0qcsB4TZKwgQzLaE/lqYMlKhv5J9dyd2RhhtGhNo2njPXDqU9XPfcNfa3MIDsdtZt5KlkIsirlo4dHsWdQ== | |
1426 | + | |
1407 | 1427 | import-fresh@^3.0.0, import-fresh@^3.2.1: |
1408 | 1428 | version "3.3.0" |
1409 | 1429 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" |
@@ -1803,7 +1823,7 @@ negotiator@0.6.3: | ||
1803 | 1823 | resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" |
1804 | 1824 | integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== |
1805 | 1825 | |
1806 | -next@13.2.4: | |
1826 | +next@^13.2.4: | |
1807 | 1827 | version "13.2.4" |
1808 | 1828 | resolved "https://registry.yarnpkg.com/next/-/next-13.2.4.tgz#2363330392b0f7da02ab41301f60857ffa7f67d6" |
1809 | 1829 | integrity sha512-g1I30317cThkEpvzfXujf0O4wtaQHtDCLhlivwlTJ885Ld+eOgcz7r3TGQzeU+cSRoNHtD8tsJgzxVdYojFssw== |
@@ -2093,7 +2113,7 @@ raw-body@2.5.1: | ||
2093 | 2113 | iconv-lite "0.4.24" |
2094 | 2114 | unpipe "1.0.0" |
2095 | 2115 | |
2096 | -react-dom@18.2.0: | |
2116 | +react-dom@^18.2.0: | |
2097 | 2117 | version "18.2.0" |
2098 | 2118 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" |
2099 | 2119 | integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== |
@@ -2106,7 +2126,7 @@ react-is@^16.13.1: | ||
2106 | 2126 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" |
2107 | 2127 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== |
2108 | 2128 | |
2109 | -react@18.2.0: | |
2129 | +react@^18.2.0: | |
2110 | 2130 | version "18.2.0" |
2111 | 2131 | resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" |
2112 | 2132 | integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== |
@@ -2120,6 +2140,18 @@ readdirp@~3.6.0: | ||
2120 | 2140 | dependencies: |
2121 | 2141 | picomatch "^2.2.1" |
2122 | 2142 | |
2143 | +redux-thunk@^2.4.2: | |
2144 | + version "2.4.2" | |
2145 | + resolved "https://registry.yarnpkg.com/redux-thunk/-/redux-thunk-2.4.2.tgz#b9d05d11994b99f7a91ea223e8b04cf0afa5ef3b" | |
2146 | + integrity sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q== | |
2147 | + | |
2148 | +redux@^4.2.0: | |
2149 | + version "4.2.1" | |
2150 | + resolved "https://registry.yarnpkg.com/redux/-/redux-4.2.1.tgz#c08f4306826c49b5e9dc901dee0452ea8fce6197" | |
2151 | + integrity sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w== | |
2152 | + dependencies: | |
2153 | + "@babel/runtime" "^7.9.2" | |
2154 | + | |
2123 | 2155 | regenerator-runtime@^0.13.11: |
2124 | 2156 | version "0.13.11" |
2125 | 2157 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" |
@@ -2134,6 +2166,11 @@ regexp.prototype.flags@^1.4.3: | ||
2134 | 2166 | define-properties "^1.1.3" |
2135 | 2167 | functions-have-names "^1.2.2" |
2136 | 2168 | |
2169 | +reselect@^4.1.7: | |
2170 | + version "4.1.7" | |
2171 | + resolved "https://registry.yarnpkg.com/reselect/-/reselect-4.1.7.tgz#56480d9ff3d3188970ee2b76527bd94a95567a42" | |
2172 | + integrity sha512-Zu1xbUt3/OPwsXL46hvOOoQrap2azE7ZQbokq61BQfiXvhewsKDwhMeZjTX9sX0nvw1t/U5Audyn1I9P/m9z0A== | |
2173 | + | |
2137 | 2174 | resolve-from@^4.0.0: |
2138 | 2175 | version "4.0.0" |
2139 | 2176 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" |
@@ -2498,7 +2535,7 @@ typed-array-length@^1.0.4: | ||
2498 | 2535 | for-each "^0.3.3" |
2499 | 2536 | is-typed-array "^1.1.9" |
2500 | 2537 | |
2501 | -typescript@5.0.2: | |
2538 | +typescript@^5.0.2: | |
2502 | 2539 | version "5.0.2" |
2503 | 2540 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.2.tgz#891e1a90c5189d8506af64b9ef929fca99ba1ee5" |
2504 | 2541 | integrity sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw== |