Spaces:
Running
Running
k-l-lambda
commited on
Commit
•
cd3b919
1
Parent(s):
05a77ff
simple test web added.
Browse files- Dockerfile +31 -0
- package.json +15 -0
- public/index.html +12 -0
- yarn.lock +318 -0
Dockerfile
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM ubuntu:22.04
|
2 |
+
|
3 |
+
# Set noninteractive installation
|
4 |
+
ENV DEBIAN_FRONTEND=noninteractive
|
5 |
+
|
6 |
+
# Install build dependencies and curl
|
7 |
+
RUN apt-get update && apt-get install -y \
|
8 |
+
curl \
|
9 |
+
build-essential \
|
10 |
+
libcairo2-dev \
|
11 |
+
libpango1.0-dev \
|
12 |
+
libjpeg-dev \
|
13 |
+
libgif-dev \
|
14 |
+
librsvg2-dev \
|
15 |
+
python2 \
|
16 |
+
fontconfig
|
17 |
+
|
18 |
+
# Download and install Node.js 12.13.0
|
19 |
+
RUN curl -fsSL https://nodejs.org/dist/v20.18.1/node-v20.18.1-linux-x64.tar.xz | tar -xJ -C /usr/local --strip-components=1
|
20 |
+
|
21 |
+
# Create app directory
|
22 |
+
WORKDIR /app
|
23 |
+
|
24 |
+
# Copy the entire project including node_modules
|
25 |
+
COPY . .
|
26 |
+
|
27 |
+
# Expose port
|
28 |
+
EXPOSE 7860
|
29 |
+
|
30 |
+
# Start command
|
31 |
+
CMD ["npm", "start"]
|
package.json
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "docker-test",
|
3 |
+
"private": true,
|
4 |
+
"version": "1.0.0",
|
5 |
+
"description": "--- title: Lotus emoji: 💻 colorFrom: purple colorTo: red sdk: docker pinned: false ---",
|
6 |
+
"main": "index.js",
|
7 |
+
"scripts": {
|
8 |
+
"start": "http-server ./public --port=7860"
|
9 |
+
},
|
10 |
+
"author": "",
|
11 |
+
"license": "ISC",
|
12 |
+
"dependencies": {
|
13 |
+
"http-server": "^14.1.1"
|
14 |
+
}
|
15 |
+
}
|
public/index.html
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<title>My first webpage!</title>
|
5 |
+
</head>
|
6 |
+
<body>
|
7 |
+
<h1>My First Webpage</h1>
|
8 |
+
<h2>Written with a little guidance from Moringa School</h2>
|
9 |
+
<p>Hello, world!</p>
|
10 |
+
<p>Welcome to my first webpage!</p>
|
11 |
+
</body>
|
12 |
+
</html>
|
yarn.lock
ADDED
@@ -0,0 +1,318 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
2 |
+
# yarn lockfile v1
|
3 |
+
|
4 |
+
|
5 |
+
ansi-styles@^4.1.0:
|
6 |
+
version "4.3.0"
|
7 |
+
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
|
8 |
+
integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
|
9 |
+
dependencies:
|
10 |
+
color-convert "^2.0.1"
|
11 |
+
|
12 |
+
async@^2.6.4:
|
13 |
+
version "2.6.4"
|
14 |
+
resolved "https://registry.yarnpkg.com/async/-/async-2.6.4.tgz#706b7ff6084664cd7eae713f6f965433b5504221"
|
15 |
+
integrity sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==
|
16 |
+
dependencies:
|
17 |
+
lodash "^4.17.14"
|
18 |
+
|
19 |
+
basic-auth@^2.0.1:
|
20 |
+
version "2.0.1"
|
21 |
+
resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-2.0.1.tgz#b998279bf47ce38344b4f3cf916d4679bbf51e3a"
|
22 |
+
integrity sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==
|
23 |
+
dependencies:
|
24 |
+
safe-buffer "5.1.2"
|
25 |
+
|
26 |
+
call-bind@^1.0.7:
|
27 |
+
version "1.0.7"
|
28 |
+
resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9"
|
29 |
+
integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==
|
30 |
+
dependencies:
|
31 |
+
es-define-property "^1.0.0"
|
32 |
+
es-errors "^1.3.0"
|
33 |
+
function-bind "^1.1.2"
|
34 |
+
get-intrinsic "^1.2.4"
|
35 |
+
set-function-length "^1.2.1"
|
36 |
+
|
37 |
+
chalk@^4.1.2:
|
38 |
+
version "4.1.2"
|
39 |
+
resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
|
40 |
+
integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
|
41 |
+
dependencies:
|
42 |
+
ansi-styles "^4.1.0"
|
43 |
+
supports-color "^7.1.0"
|
44 |
+
|
45 |
+
color-convert@^2.0.1:
|
46 |
+
version "2.0.1"
|
47 |
+
resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
|
48 |
+
integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
|
49 |
+
dependencies:
|
50 |
+
color-name "~1.1.4"
|
51 |
+
|
52 |
+
color-name@~1.1.4:
|
53 |
+
version "1.1.4"
|
54 |
+
resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
|
55 |
+
integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
|
56 |
+
|
57 |
+
corser@^2.0.1:
|
58 |
+
version "2.0.1"
|
59 |
+
resolved "https://registry.yarnpkg.com/corser/-/corser-2.0.1.tgz#8eda252ecaab5840dcd975ceb90d9370c819ff87"
|
60 |
+
integrity sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==
|
61 |
+
|
62 |
+
debug@^3.2.7:
|
63 |
+
version "3.2.7"
|
64 |
+
resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
|
65 |
+
integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
|
66 |
+
dependencies:
|
67 |
+
ms "^2.1.1"
|
68 |
+
|
69 |
+
define-data-property@^1.1.4:
|
70 |
+
version "1.1.4"
|
71 |
+
resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e"
|
72 |
+
integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==
|
73 |
+
dependencies:
|
74 |
+
es-define-property "^1.0.0"
|
75 |
+
es-errors "^1.3.0"
|
76 |
+
gopd "^1.0.1"
|
77 |
+
|
78 |
+
es-define-property@^1.0.0:
|
79 |
+
version "1.0.0"
|
80 |
+
resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845"
|
81 |
+
integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==
|
82 |
+
dependencies:
|
83 |
+
get-intrinsic "^1.2.4"
|
84 |
+
|
85 |
+
es-errors@^1.3.0:
|
86 |
+
version "1.3.0"
|
87 |
+
resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f"
|
88 |
+
integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==
|
89 |
+
|
90 |
+
eventemitter3@^4.0.0:
|
91 |
+
version "4.0.7"
|
92 |
+
resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
|
93 |
+
integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
|
94 |
+
|
95 |
+
follow-redirects@^1.0.0:
|
96 |
+
version "1.15.9"
|
97 |
+
resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.9.tgz#a604fa10e443bf98ca94228d9eebcc2e8a2c8ee1"
|
98 |
+
integrity sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==
|
99 |
+
|
100 |
+
function-bind@^1.1.2:
|
101 |
+
version "1.1.2"
|
102 |
+
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c"
|
103 |
+
integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==
|
104 |
+
|
105 |
+
get-intrinsic@^1.1.3, get-intrinsic@^1.2.4:
|
106 |
+
version "1.2.4"
|
107 |
+
resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd"
|
108 |
+
integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==
|
109 |
+
dependencies:
|
110 |
+
es-errors "^1.3.0"
|
111 |
+
function-bind "^1.1.2"
|
112 |
+
has-proto "^1.0.1"
|
113 |
+
has-symbols "^1.0.3"
|
114 |
+
hasown "^2.0.0"
|
115 |
+
|
116 |
+
gopd@^1.0.1:
|
117 |
+
version "1.0.1"
|
118 |
+
resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c"
|
119 |
+
integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==
|
120 |
+
dependencies:
|
121 |
+
get-intrinsic "^1.1.3"
|
122 |
+
|
123 |
+
has-flag@^4.0.0:
|
124 |
+
version "4.0.0"
|
125 |
+
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
|
126 |
+
integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
|
127 |
+
|
128 |
+
has-property-descriptors@^1.0.2:
|
129 |
+
version "1.0.2"
|
130 |
+
resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854"
|
131 |
+
integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==
|
132 |
+
dependencies:
|
133 |
+
es-define-property "^1.0.0"
|
134 |
+
|
135 |
+
has-proto@^1.0.1:
|
136 |
+
version "1.0.3"
|
137 |
+
resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd"
|
138 |
+
integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==
|
139 |
+
|
140 |
+
has-symbols@^1.0.3:
|
141 |
+
version "1.0.3"
|
142 |
+
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
|
143 |
+
integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
|
144 |
+
|
145 |
+
hasown@^2.0.0:
|
146 |
+
version "2.0.2"
|
147 |
+
resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003"
|
148 |
+
integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==
|
149 |
+
dependencies:
|
150 |
+
function-bind "^1.1.2"
|
151 |
+
|
152 |
+
he@^1.2.0:
|
153 |
+
version "1.2.0"
|
154 |
+
resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
|
155 |
+
integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
|
156 |
+
|
157 |
+
html-encoding-sniffer@^3.0.0:
|
158 |
+
version "3.0.0"
|
159 |
+
resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz#2cb1a8cf0db52414776e5b2a7a04d5dd98158de9"
|
160 |
+
integrity sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==
|
161 |
+
dependencies:
|
162 |
+
whatwg-encoding "^2.0.0"
|
163 |
+
|
164 |
+
http-proxy@^1.18.1:
|
165 |
+
version "1.18.1"
|
166 |
+
resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549"
|
167 |
+
integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==
|
168 |
+
dependencies:
|
169 |
+
eventemitter3 "^4.0.0"
|
170 |
+
follow-redirects "^1.0.0"
|
171 |
+
requires-port "^1.0.0"
|
172 |
+
|
173 |
+
http-server@^14.1.1:
|
174 |
+
version "14.1.1"
|
175 |
+
resolved "https://registry.yarnpkg.com/http-server/-/http-server-14.1.1.tgz#d60fbb37d7c2fdff0f0fbff0d0ee6670bd285e2e"
|
176 |
+
integrity sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==
|
177 |
+
dependencies:
|
178 |
+
basic-auth "^2.0.1"
|
179 |
+
chalk "^4.1.2"
|
180 |
+
corser "^2.0.1"
|
181 |
+
he "^1.2.0"
|
182 |
+
html-encoding-sniffer "^3.0.0"
|
183 |
+
http-proxy "^1.18.1"
|
184 |
+
mime "^1.6.0"
|
185 |
+
minimist "^1.2.6"
|
186 |
+
opener "^1.5.1"
|
187 |
+
portfinder "^1.0.28"
|
188 |
+
secure-compare "3.0.1"
|
189 |
+
union "~0.5.0"
|
190 |
+
url-join "^4.0.1"
|
191 |
+
|
192 |
+
iconv-lite@0.6.3:
|
193 |
+
version "0.6.3"
|
194 |
+
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501"
|
195 |
+
integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==
|
196 |
+
dependencies:
|
197 |
+
safer-buffer ">= 2.1.2 < 3.0.0"
|
198 |
+
|
199 |
+
lodash@^4.17.14:
|
200 |
+
version "4.17.21"
|
201 |
+
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
|
202 |
+
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
|
203 |
+
|
204 |
+
mime@^1.6.0:
|
205 |
+
version "1.6.0"
|
206 |
+
resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
|
207 |
+
integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
|
208 |
+
|
209 |
+
minimist@^1.2.6:
|
210 |
+
version "1.2.8"
|
211 |
+
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
|
212 |
+
integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
|
213 |
+
|
214 |
+
mkdirp@^0.5.6:
|
215 |
+
version "0.5.6"
|
216 |
+
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6"
|
217 |
+
integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==
|
218 |
+
dependencies:
|
219 |
+
minimist "^1.2.6"
|
220 |
+
|
221 |
+
ms@^2.1.1:
|
222 |
+
version "2.1.3"
|
223 |
+
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
|
224 |
+
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
|
225 |
+
|
226 |
+
object-inspect@^1.13.1:
|
227 |
+
version "1.13.3"
|
228 |
+
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.3.tgz#f14c183de51130243d6d18ae149375ff50ea488a"
|
229 |
+
integrity sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==
|
230 |
+
|
231 |
+
opener@^1.5.1:
|
232 |
+
version "1.5.2"
|
233 |
+
resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.2.tgz#5d37e1f35077b9dcac4301372271afdeb2a13598"
|
234 |
+
integrity sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==
|
235 |
+
|
236 |
+
portfinder@^1.0.28:
|
237 |
+
version "1.0.32"
|
238 |
+
resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.32.tgz#2fe1b9e58389712429dc2bea5beb2146146c7f81"
|
239 |
+
integrity sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==
|
240 |
+
dependencies:
|
241 |
+
async "^2.6.4"
|
242 |
+
debug "^3.2.7"
|
243 |
+
mkdirp "^0.5.6"
|
244 |
+
|
245 |
+
qs@^6.4.0:
|
246 |
+
version "6.13.1"
|
247 |
+
resolved "https://registry.yarnpkg.com/qs/-/qs-6.13.1.tgz#3ce5fc72bd3a8171b85c99b93c65dd20b7d1b16e"
|
248 |
+
integrity sha512-EJPeIn0CYrGu+hli1xilKAPXODtJ12T0sP63Ijx2/khC2JtuaN3JyNIpvmnkmaEtha9ocbG4A4cMcr+TvqvwQg==
|
249 |
+
dependencies:
|
250 |
+
side-channel "^1.0.6"
|
251 |
+
|
252 |
+
requires-port@^1.0.0:
|
253 |
+
version "1.0.0"
|
254 |
+
resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
|
255 |
+
integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==
|
256 |
+
|
257 |
+
safe-buffer@5.1.2:
|
258 |
+
version "5.1.2"
|
259 |
+
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
|
260 |
+
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
|
261 |
+
|
262 |
+
"safer-buffer@>= 2.1.2 < 3.0.0":
|
263 |
+
version "2.1.2"
|
264 |
+
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
|
265 |
+
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
|
266 |
+
|
267 |
+
secure-compare@3.0.1:
|
268 |
+
version "3.0.1"
|
269 |
+
resolved "https://registry.yarnpkg.com/secure-compare/-/secure-compare-3.0.1.tgz#f1a0329b308b221fae37b9974f3d578d0ca999e3"
|
270 |
+
integrity sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==
|
271 |
+
|
272 |
+
set-function-length@^1.2.1:
|
273 |
+
version "1.2.2"
|
274 |
+
resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449"
|
275 |
+
integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==
|
276 |
+
dependencies:
|
277 |
+
define-data-property "^1.1.4"
|
278 |
+
es-errors "^1.3.0"
|
279 |
+
function-bind "^1.1.2"
|
280 |
+
get-intrinsic "^1.2.4"
|
281 |
+
gopd "^1.0.1"
|
282 |
+
has-property-descriptors "^1.0.2"
|
283 |
+
|
284 |
+
side-channel@^1.0.6:
|
285 |
+
version "1.0.6"
|
286 |
+
resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2"
|
287 |
+
integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==
|
288 |
+
dependencies:
|
289 |
+
call-bind "^1.0.7"
|
290 |
+
es-errors "^1.3.0"
|
291 |
+
get-intrinsic "^1.2.4"
|
292 |
+
object-inspect "^1.13.1"
|
293 |
+
|
294 |
+
supports-color@^7.1.0:
|
295 |
+
version "7.2.0"
|
296 |
+
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
|
297 |
+
integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
|
298 |
+
dependencies:
|
299 |
+
has-flag "^4.0.0"
|
300 |
+
|
301 |
+
union@~0.5.0:
|
302 |
+
version "0.5.0"
|
303 |
+
resolved "https://registry.yarnpkg.com/union/-/union-0.5.0.tgz#b2c11be84f60538537b846edb9ba266ba0090075"
|
304 |
+
integrity sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==
|
305 |
+
dependencies:
|
306 |
+
qs "^6.4.0"
|
307 |
+
|
308 |
+
url-join@^4.0.1:
|
309 |
+
version "4.0.1"
|
310 |
+
resolved "https://registry.yarnpkg.com/url-join/-/url-join-4.0.1.tgz#b642e21a2646808ffa178c4c5fda39844e12cde7"
|
311 |
+
integrity sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==
|
312 |
+
|
313 |
+
whatwg-encoding@^2.0.0:
|
314 |
+
version "2.0.0"
|
315 |
+
resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz#e7635f597fd87020858626805a2729fa7698ac53"
|
316 |
+
integrity sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==
|
317 |
+
dependencies:
|
318 |
+
iconv-lite "0.6.3"
|