Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
Dui123
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
王天宇
Dui123
Commits
970d30e1
Commit
970d30e1
authored
Sep 15, 2021
by
wty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加子分类后端代码
parent
d7fb09d6
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
574 additions
and
503 deletions
+574
-503
query.js
expressServer/routes/query.js
+1
-5
users.js
expressServer/routes/users.js
+9
-8
ToolType.jsx
src/component/ToolType/ToolType.jsx
+45
-21
ToolType.scss
src/component/ToolType/ToolType.scss
+2
-1
Root.jsx
src/dataCenter/Root.jsx
+1
-1
index.js
src/index.js
+14
-5
yarn.lock
yarn.lock
+502
-462
No files found.
expressServer/routes/query.js
View file @
970d30e1
...
...
@@ -12,13 +12,9 @@ router.get('/queryType', (req, res) => {
err
})
}
const
_result
=
result
.
slice
().
map
(
v
=>
{
JSON
.
parse
(
v
.
typeContent
)})
res
.
send
({
success
:
true
,
data
:
{
...
result
,
_result
}
data
:
result
.
map
(
v
=>
({...
v
,
typeContent
:
JSON
.
parse
(
v
.
typeContent
)}))
})
})
});
...
...
expressServer/routes/users.js
View file @
970d30e1
...
...
@@ -12,14 +12,15 @@ router.get('/getUser', function (req, res, next) {
let
{
userId
}
=
req
.
cookies
console
.
log
(
req
.
cookies
)
console
.
log
(
'userId:'
,
userId
)
if
(
!
userId
)
{
res
.
send
({
success
:
false
,
code
:
ErrorCode
.
USER_NOT_LOGIN
,
data
:
'用户尚未登录'
})
return
}
userId
=
req
.
query
.
userId
// if (!userId) {
// res.send({
// success: false,
// code: ErrorCode.USER_NOT_LOGIN,
// data: '用户尚未登录'
// })
// return
// }
const
SQL
=
'SELECT * FROM `user` WHERE `user`.uid = ?'
Mysql
.
query
(
SQL
,
[
userId
],
(
err
,
result
)
=>
{
if
(
err
)
{
...
...
src/component/ToolType/ToolType.jsx
View file @
970d30e1
...
...
@@ -2,36 +2,60 @@ import './ToolType.scss'
import
{
useContext
,
useEffect
,
useState
}
from
"react"
;
import
{
Root
}
from
"../../dataCenter/Root"
;
import
{
NEED_UPDATE_INDEX
}
from
"../../dataCenter/action"
;
import
{
Tabs
}
from
"antd"
;
function
ToolType
(
props
)
{
function
ToolType
(
props
)
{
const
{
dataCenter
,
fetchData
,
updateIndex
,
dispatch
}
=
useContext
(
Root
)
const
[
typeId
,
setTypeId
]
=
useState
(
2
)
const
{
TabPane
}
=
Tabs
;
useEffect
(()
=>
{
useEffect
(()
=>
{
updateIndex
()
},[
typeId
])
},
[
typeId
])
useEffect
(()
=>
{
if
(
dataCenter
.
needUpdateIndex
){
const
_typeId
=
typeId
===
'all'
?
{}
:
typeId
===
'follow'
?
{
isFollow
:
true
,
typeId
:
JSON
.
stringify
(
dataCenter
.
userInfo
.
follow
)}
:
{
typeId
:
typeId
}
fetchData
(
'/query/queryToolBox'
,
_typeId
,
'toolBox'
).
then
(()
=>
dispatch
(
NEED_UPDATE_INDEX
()))
useEffect
(()
=>
{
if
(
dataCenter
.
needUpdateIndex
)
{
const
_typeId
=
typeId
===
'all'
?
{}
:
typeId
===
'follow'
?
{
isFollow
:
true
,
typeId
:
JSON
.
stringify
(
dataCenter
.
userInfo
.
follow
)
}
:
{
typeId
:
typeId
}
fetchData
(
'/query/queryToolBox'
,
_typeId
,
'toolBox'
).
then
(()
=>
dispatch
(
NEED_UPDATE_INDEX
()))
}
},[
dataCenter
.
needUpdateIndex
])
},
[
dataCenter
.
needUpdateIndex
])
console
.
log
(
dataCenter
?.
type
?.
filter
(
v
=>
v
.
typeId
===
typeId
))
return
(
<
div
className=
"tab-tool-type"
>
<
div
className=
{
typeId
===
'all'
?
'item-tool-type item-tool-type-selected'
:
'item-tool-type'
}
onClick=
{
()
=>
setTypeId
(
'all'
)
}
>
工具
</
div
>
<
div
className=
{
typeId
===
'follow'
?
'item-tool-type item-tool-type-selected'
:
'item-tool-type'
}
onClick=
{
()
=>
setTypeId
(
'follow'
)
}
>
我的收藏
</
div
>
{
dataCenter
?.
type
?.
length
&&
dataCenter
.
type
.
map
(
v
=>
{
const
classNameArr
=
[
'item-tool-type '
]
if
(
v
[
"typeId"
]
===
typeId
)
classNameArr
.
push
(
'item-tool-type-selected'
)
return
(
<
div
key=
{
v
[
"typeId"
]
}
className=
{
classNameArr
.
join
(
''
)
}
onClick=
{
()
=>
setTypeId
(
v
[
"typeId"
])
}
>
{
v
.
typeName
}
</
div
>
)
})
}
</
div
>
<>
<
div
className=
"tab-tool-type"
>
<
div
className=
{
typeId
===
'all'
?
'item-tool-type item-tool-type-selected'
:
'item-tool-type'
}
onClick=
{
()
=>
setTypeId
(
'all'
)
}
>
工具
</
div
>
<
div
className=
{
typeId
===
'follow'
?
'item-tool-type item-tool-type-selected'
:
'item-tool-type'
}
onClick=
{
()
=>
setTypeId
(
'follow'
)
}
>
我的收藏
</
div
>
{
dataCenter
?.
type
?.
length
&&
dataCenter
.
type
.
map
(
v
=>
{
const
classNameArr
=
[
'item-tool-type '
]
if
(
v
[
"typeId"
]
===
typeId
)
classNameArr
.
push
(
'item-tool-type-selected'
)
return
(
<
div
key=
{
v
[
"typeId"
]
}
className=
{
classNameArr
.
join
(
''
)
}
onClick=
{
()
=>
setTypeId
(
v
[
"typeId"
])
}
>
{
v
.
typeName
}
</
div
>
)
})
}
</
div
>
<
div
className=
"child-type"
>
{
dataCenter
?.
type
?.
length
&&
dataCenter
.
type
.
filter
(
v
=>
v
.
typeId
===
typeId
)[
0
].
typeContent
.
map
(
v
=>
{
return
(
<
div
key=
{
v
.
id
}
className=
"item-childType"
>
{
v
.
name
}
</
div
>
)
})
}
</
div
>
</>
)
}
...
...
src/component/ToolType/ToolType.scss
View file @
970d30e1
...
...
@@ -29,7 +29,7 @@
}
}
.child
T
ype
{
.child
-t
ype
{
margin-left
:
0
;
font-size
:
15px
;
display
:
flex
;
...
...
@@ -37,6 +37,7 @@
justify-content
:
flex-start
;
flex-wrap
:
nowrap
;
overflow-x
:
auto
;
border
:
1px
solid
#000
;
.item-childType
{
flex
:
0
0
auto
;
...
...
src/dataCenter/Root.jsx
View file @
970d30e1
...
...
@@ -27,7 +27,7 @@ function DataCenter(props) {
}
const
fetchData
=
(
path
,
requestData
,
dataName
)
=>
fetch
(
generateUrl
(
path
,
requestData
),
{
credentials
:
'include'
})
fetch
(
generateUrl
(
path
,
requestData
),
{
credentials
:
'include'
,
mode
:
'no-cors'
})
.
then
(
res
=>
res
.
json
())
.
then
(
res
=>
{
if
(
res
.
success
)
{
...
...
src/index.js
View file @
970d30e1
import
React
from
'react'
;
import
ReactDOM
from
'react-dom'
;
import
{
ConfigProvider
,
DatePicker
,
message
}
from
'antd'
;
// 由于 antd 组件的默认文案是英文,所以需要修改为中文
import
zhCN
from
'antd/lib/locale/zh_CN'
;
import
moment
from
'moment'
;
import
'moment/locale/zh-cn'
;
import
'antd/dist/antd.css'
;
import
'./index.css'
;
import
'./index.css'
;
import
App
from
'./App'
;
import
reportWebVitals
from
'./reportWebVitals'
;
moment
.
locale
(
'zh-cn'
);
ReactDOM
.
render
(
<
React
.
StrictMode
>
<
App
/>
<
/React.StrictMode>
,
document
.
getElementById
(
'root'
)
<
React
.
StrictMode
>
<
ConfigProvider
locale
=
{
zhCN
}
>
<
App
/>
<
/ConfigProvider
>
<
/React.StrictMode>
,
document
.
getElementById
(
'root'
)
);
// If you want to start measuring performance in your app, pass a function
...
...
yarn.lock
View file @
970d30e1
...
...
@@ -57,7 +57,7 @@
dependencies:
"@babel/highlight" "^7.14.5"
"@babel/compat-data@^7.12.1", "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.1
4.7", "@babel/compat-data@^7.1
5.0":
"@babel/compat-data@^7.12.1", "@babel/compat-data@^7.13.11", "@babel/compat-data@^7.15.0":
version "7.15.0"
resolved "http://npm.dui88.com:80/@babel%2fcompat-data/-/compat-data-7.15.0.tgz#2dbaf8b85334796cafbb0f5793a90a2fc010b176"
integrity sha1-Lbr4uFM0eWyvuw9Xk6kKL8AQsXY=
...
...
@@ -85,19 +85,19 @@
source-map "^0.5.0"
"@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.7.5", "@babel/core@^7.8.4":
version "7.15.
0
"
resolved "http://npm.dui88.com:80/@babel%2fcore/-/core-7.15.
0.tgz#749e57c68778b73ad8082775561f67f5196aafa8
"
integrity sha1-
dJ5Xxod4tzrYCCd1Vh9n9Rlqr6g
=
version "7.15.
5
"
resolved "http://npm.dui88.com:80/@babel%2fcore/-/core-7.15.
5.tgz#f8ed9ace730722544609f90c9bb49162dc3bf5b9
"
integrity sha1-
+O2aznMHIlRGCfkMm7SRYtw79bk
=
dependencies:
"@babel/code-frame" "^7.14.5"
"@babel/generator" "^7.15.
0
"
"@babel/helper-compilation-targets" "^7.15.
0
"
"@babel/helper-module-transforms" "^7.15.
0
"
"@babel/helpers" "^7.1
4.8
"
"@babel/parser" "^7.15.
0
"
"@babel/template" "^7.1
4.5
"
"@babel/traverse" "^7.15.
0
"
"@babel/types" "^7.15.
0
"
"@babel/generator" "^7.15.
4
"
"@babel/helper-compilation-targets" "^7.15.
4
"
"@babel/helper-module-transforms" "^7.15.
4
"
"@babel/helpers" "^7.1
5.4
"
"@babel/parser" "^7.15.
5
"
"@babel/template" "^7.1
5.4
"
"@babel/traverse" "^7.15.
4
"
"@babel/types" "^7.15.
4
"
convert-source-map "^1.7.0"
debug "^4.1.0"
gensync "^1.0.0-beta.2"
...
...
@@ -105,51 +105,51 @@
semver "^6.3.0"
source-map "^0.5.0"
"@babel/generator@^7.12.1", "@babel/generator@^7.15.
0
":
version "7.15.
0
"
resolved "http://npm.dui88.com:80/@babel%2fgenerator/-/generator-7.15.
0.tgz#a7d0c172e0d814974bad5aa77ace543b97917f15
"
integrity sha1-
p9DBcuDYFJdLrVqnes5UO5eRfxU
=
"@babel/generator@^7.12.1", "@babel/generator@^7.15.
4
":
version "7.15.
4
"
resolved "http://npm.dui88.com:80/@babel%2fgenerator/-/generator-7.15.
4.tgz#85acb159a267ca6324f9793986991ee2022a05b0
"
integrity sha1-
hayxWaJnymMk+Xk5hpke4gIqBbA
=
dependencies:
"@babel/types" "^7.15.
0
"
"@babel/types" "^7.15.
4
"
jsesc "^2.5.1"
source-map "^0.5.0"
"@babel/helper-annotate-as-pure@^7.14.5":
version "7.1
4.5
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-annotate-as-pure/-/helper-annotate-as-pure-7.1
4.5.tgz#7bf478ec3b71726d56a8ca5775b046fc29879e61
"
integrity sha1-
e/R47Dtxcm1WqMpXdbBG/CmHnmE
=
"@babel/helper-annotate-as-pure@^7.14.5"
, "@babel/helper-annotate-as-pure@^7.15.4"
:
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-annotate-as-pure/-/helper-annotate-as-pure-7.1
5.4.tgz#3d0e43b00c5e49fdb6c57e421601a7a658d5f835
"
integrity sha1-
PQ5DsAxeSf22xX5CFgGnpljV+DU
=
dependencies:
"@babel/types" "^7.1
4.5
"
"@babel/types" "^7.1
5.4
"
"@babel/helper-builder-binary-assignment-operator-visitor@^7.14.5":
version "7.1
4.5
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1
4.5.tgz#b939b43f8c37765443a19ae74ad8b15978e0a191
"
integrity sha1-
uTm0P4w3dlRDoZrnStixWXjgoZE
=
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1
5.4.tgz#21ad815f609b84ee0e3058676c33cf6d1670525f
"
integrity sha1-
Ia2BX2CbhO4OMFhnbDPPbRZwUl8
=
dependencies:
"@babel/helper-explode-assignable-expression" "^7.1
4.5
"
"@babel/types" "^7.1
4.5
"
"@babel/helper-explode-assignable-expression" "^7.1
5.4
"
"@babel/types" "^7.1
5.4
"
"@babel/helper-compilation-targets@^7.12.1", "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.1
4.5", "@babel/helper-compilation-targets@^7.15.0
":
version "7.15.
0
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-compilation-targets/-/helper-compilation-targets-7.15.
0.tgz#973df8cbd025515f3ff25db0c05efc704fa79818
"
integrity sha1-
lz34y9AlUV8/8l2wwF78cE+nmBg
=
"@babel/helper-compilation-targets@^7.12.1", "@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.1
5.4
":
version "7.15.
4
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-compilation-targets/-/helper-compilation-targets-7.15.
4.tgz#cf6d94f30fbefc139123e27dd6b02f65aeedb7b9
"
integrity sha1-
z22U8w++/BORI+J91rAvZa7tt7k
=
dependencies:
"@babel/compat-data" "^7.15.0"
"@babel/helper-validator-option" "^7.14.5"
browserslist "^4.16.6"
semver "^6.3.0"
"@babel/helper-create-class-features-plugin@^7.12.1", "@babel/helper-create-class-features-plugin@^7.14.5", "@babel/helper-create-class-features-plugin@^7.15.
0
":
version "7.15.
0
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.
0.tgz#c9a137a4d137b2d0e2c649acf536d7ba1a76c0f7
"
integrity sha1-
yaE3pNE3stDixkms9TbXuhp2wPc
=
"@babel/helper-create-class-features-plugin@^7.12.1", "@babel/helper-create-class-features-plugin@^7.14.5", "@babel/helper-create-class-features-plugin@^7.15.
4
":
version "7.15.
4
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.
4.tgz#7f977c17bd12a5fba363cb19bea090394bf37d2e
"
integrity sha1-
f5d8F70SpfujY8sZvqCQOUvzfS4
=
dependencies:
"@babel/helper-annotate-as-pure" "^7.1
4.5
"
"@babel/helper-function-name" "^7.1
4.5
"
"@babel/helper-member-expression-to-functions" "^7.15.
0
"
"@babel/helper-optimise-call-expression" "^7.1
4.5
"
"@babel/helper-replace-supers" "^7.15.
0
"
"@babel/helper-split-export-declaration" "^7.1
4.5
"
"@babel/helper-annotate-as-pure" "^7.1
5.4
"
"@babel/helper-function-name" "^7.1
5.4
"
"@babel/helper-member-expression-to-functions" "^7.15.
4
"
"@babel/helper-optimise-call-expression" "^7.1
5.4
"
"@babel/helper-replace-supers" "^7.15.
4
"
"@babel/helper-split-export-declaration" "^7.1
5.4
"
"@babel/helper-create-regexp-features-plugin@^7.14.5":
version "7.14.5"
...
...
@@ -173,115 +173,115 @@
resolve "^1.14.2"
semver "^6.1.2"
"@babel/helper-explode-assignable-expression@^7.1
4.5
":
version "7.1
4.5
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1
4.5.tgz#8aa72e708205c7bb643e45c73b4386cdf2a1f645
"
integrity sha1-
iqcucIIFx7tkPkXHO0OGzfKh9kU
=
"@babel/helper-explode-assignable-expression@^7.1
5.4
":
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1
5.4.tgz#f9aec9d219f271eaf92b9f561598ca6b2682600c
"
integrity sha1-
+a7J0hnycer5K59WFZjKayaCYAw
=
dependencies:
"@babel/types" "^7.1
4.5
"
"@babel/types" "^7.1
5.4
"
"@babel/helper-function-name@^7.14.5":
version "7.1
4.5
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-function-name/-/helper-function-name-7.1
4.5.tgz#89e2c474972f15d8e233b52ee8c480e2cfcd50c4
"
integrity sha1-
ieLEdJcvFdjiM7Uu6MSA4s/NUMQ
=
"@babel/helper-function-name@^7.14.5"
, "@babel/helper-function-name@^7.15.4"
:
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-function-name/-/helper-function-name-7.1
5.4.tgz#845744dafc4381a4a5fb6afa6c3d36f98a787ebc
"
integrity sha1-
hFdE2vxDgaSl+2r6bD02+Yp4frw
=
dependencies:
"@babel/helper-get-function-arity" "^7.1
4.5
"
"@babel/template" "^7.1
4.5
"
"@babel/types" "^7.1
4.5
"
"@babel/helper-get-function-arity" "^7.1
5.4
"
"@babel/template" "^7.1
5.4
"
"@babel/types" "^7.1
5.4
"
"@babel/helper-get-function-arity@^7.1
4.5
":
version "7.1
4.5
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-get-function-arity/-/helper-get-function-arity-7.1
4.5.tgz#25fbfa579b0937eee1f3b805ece4ce398c431815
"
integrity sha1-
Jfv6V5sJN+7h87gF7OTOOYxDGBU
=
"@babel/helper-get-function-arity@^7.1
5.4
":
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-get-function-arity/-/helper-get-function-arity-7.1
5.4.tgz#098818934a137fce78b536a3e015864be1e2879b
"
integrity sha1-
CYgYk0oTf854tTaj4BWGS+Hih5s
=
dependencies:
"@babel/types" "^7.1
4.5
"
"@babel/types" "^7.1
5.4
"
"@babel/helper-hoist-variables@^7.1
4.5
":
version "7.1
4.5
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-hoist-variables/-/helper-hoist-variables-7.1
4.5.tgz#e0dd27c33a78e577d7c8884916a3e7ef1f7c7f8d
"
integrity sha1-
4N0nwzp45XfXyIhJFqPn7x98f40
=
"@babel/helper-hoist-variables@^7.1
5.4
":
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-hoist-variables/-/helper-hoist-variables-7.1
5.4.tgz#09993a3259c0e918f99d104261dfdfc033f178df
"
integrity sha1-
CZk6MlnA6Rj5nRBCYd/fwDPxeN8
=
dependencies:
"@babel/types" "^7.1
4.5
"
"@babel/types" "^7.1
5.4
"
"@babel/helper-member-expression-to-functions@^7.15.
0
":
version "7.15.
0
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.
0.tgz#0ddaf5299c8179f27f37327936553e9bba60990b
"
integrity sha1-
Ddr1KZyBefJ/NzJ5NlU+m7pgmQs
=
"@babel/helper-member-expression-to-functions@^7.15.
4
":
version "7.15.
4
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.
4.tgz#bfd34dc9bba9824a4658b0317ec2fd571a51e6ef
"
integrity sha1-
v9NNybupgkpGWLAxfsL9VxpR5u8
=
dependencies:
"@babel/types" "^7.15.
0
"
"@babel/types" "^7.15.
4
"
"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.14.5":
version "7.1
4.5
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-module-imports/-/helper-module-imports-7.1
4.5.tgz#6d1a44df6a38c957aa7c312da076429f11b422f3
"
integrity sha1-
bRpE32o4yVeqfDEtoHZCnxG0IvM
=
"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.12.13", "@babel/helper-module-imports@^7.14.5"
, "@babel/helper-module-imports@^7.15.4"
:
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-module-imports/-/helper-module-imports-7.1
5.4.tgz#e18007d230632dea19b47853b984476e7b4e103f
"
integrity sha1-
4YAH0jBjLeoZtHhTuYRHbntOED8
=
dependencies:
"@babel/types" "^7.1
4.5
"
"@babel/types" "^7.1
5.4
"
"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.14.5", "@babel/helper-module-transforms@^7.15.
0
":
version "7.15.
0
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-module-transforms/-/helper-module-transforms-7.15.
0.tgz#679275581ea056373eddbe360e1419ef23783b08
"
integrity sha1-
Z5J1WB6gVjc+3b42DhQZ7yN4Owg
=
"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.14.5", "@babel/helper-module-transforms@^7.15.
4
":
version "7.15.
4
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-module-transforms/-/helper-module-transforms-7.15.
4.tgz#962cc629a7f7f9a082dd62d0307fa75fe8788d7c
"
integrity sha1-
lizGKaf3+aCC3WLQMH+nX+h4jXw
=
dependencies:
"@babel/helper-module-imports" "^7.1
4.5
"
"@babel/helper-replace-supers" "^7.15.
0
"
"@babel/helper-simple-access" "^7.1
4.8
"
"@babel/helper-split-export-declaration" "^7.1
4.5
"
"@babel/helper-module-imports" "^7.1
5.4
"
"@babel/helper-replace-supers" "^7.15.
4
"
"@babel/helper-simple-access" "^7.1
5.4
"
"@babel/helper-split-export-declaration" "^7.1
5.4
"
"@babel/helper-validator-identifier" "^7.14.9"
"@babel/template" "^7.1
4.5
"
"@babel/traverse" "^7.15.
0
"
"@babel/types" "^7.15.
0
"
"@babel/template" "^7.1
5.4
"
"@babel/traverse" "^7.15.
4
"
"@babel/types" "^7.15.
4
"
"@babel/helper-optimise-call-expression@^7.1
4.5
":
version "7.1
4.5
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-optimise-call-expression/-/helper-optimise-call-expression-7.1
4.5.tgz#f27395a8619e0665b3f0364cddb41c25d71b499c
"
integrity sha1-8
nOVqGGeBmWz8DZM3bQcJdcbSZw
=
"@babel/helper-optimise-call-expression@^7.1
5.4
":
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-optimise-call-expression/-/helper-optimise-call-expression-7.1
5.4.tgz#f310a5121a3b9cc52d9ab19122bd729822dee171
"
integrity sha1-8
xClEho7nMUtmrGRIr1ymCLe4XE
=
dependencies:
"@babel/types" "^7.1
4.5
"
"@babel/types" "^7.1
5.4
"
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.13.0", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
version "7.14.5"
resolved "http://npm.dui88.com:80/@babel%2fhelper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9"
integrity sha1-WsgizpfuxGdBq3ClF5ceRDpwxak=
"@babel/helper-remap-async-to-generator@^7.14.5":
version "7.1
4.5
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1
4.5.tgz#51439c913612958f54a987a4ffc9ee587a2045d6
"
integrity sha1-
UUOckTYSlY9UqYek/8nuWHogRdY
=
"@babel/helper-remap-async-to-generator@^7.14.5"
, "@babel/helper-remap-async-to-generator@^7.15.4"
:
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1
5.4.tgz#2637c0731e4c90fbf58ac58b50b2b5a192fc970f
"
integrity sha1-
JjfAcx5MkPv1isWLULK1oZL8lw8
=
dependencies:
"@babel/helper-annotate-as-pure" "^7.1
4.5
"
"@babel/helper-wrap-function" "^7.1
4.5
"
"@babel/types" "^7.1
4.5
"
"@babel/helper-annotate-as-pure" "^7.1
5.4
"
"@babel/helper-wrap-function" "^7.1
5.4
"
"@babel/types" "^7.1
5.4
"
"@babel/helper-replace-supers@^7.14.5", "@babel/helper-replace-supers@^7.15.
0
":
version "7.15.
0
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-replace-supers/-/helper-replace-supers-7.15.
0.tgz#ace07708f5bf746bf2e6ba99572cce79b5d4e7f4
"
integrity sha1-
rOB3CPW/dGvy5rqZVyzOebXU5/Q
=
"@babel/helper-replace-supers@^7.14.5", "@babel/helper-replace-supers@^7.15.
4
":
version "7.15.
4
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-replace-supers/-/helper-replace-supers-7.15.
4.tgz#52a8ab26ba918c7f6dee28628b07071ac7b7347a
"
integrity sha1-
UqirJrqRjH9t7ihiiwcHGse3NHo
=
dependencies:
"@babel/helper-member-expression-to-functions" "^7.15.
0
"
"@babel/helper-optimise-call-expression" "^7.1
4.5
"
"@babel/traverse" "^7.15.
0
"
"@babel/types" "^7.15.
0
"
"@babel/helper-member-expression-to-functions" "^7.15.
4
"
"@babel/helper-optimise-call-expression" "^7.1
5.4
"
"@babel/traverse" "^7.15.
4
"
"@babel/types" "^7.15.
4
"
"@babel/helper-simple-access@^7.1
4.8
":
version "7.1
4.8
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-simple-access/-/helper-simple-access-7.1
4.8.tgz#82e1fec0644a7e775c74d305f212c39f8fe73924
"
integrity sha1-
guH+wGRKfndcdNMF8hLDn4/nOSQ
=
"@babel/helper-simple-access@^7.1
5.4
":
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-simple-access/-/helper-simple-access-7.1
5.4.tgz#ac368905abf1de8e9781434b635d8f8674bcc13b
"
integrity sha1-
rDaJBavx3o6XgUNLY12PhnS8wTs
=
dependencies:
"@babel/types" "^7.1
4.8
"
"@babel/types" "^7.1
5.4
"
"@babel/helper-skip-transparent-expression-wrappers@^7.12.1", "@babel/helper-skip-transparent-expression-wrappers@^7.14.5":
version "7.1
4.5
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.1
4.5.tgz#96f486ac050ca9f44b009fbe5b7d394cab3a0ee4
"
integrity sha1-
lvSGrAUMqfRLAJ++W305TKs6DuQ
=
"@babel/helper-skip-transparent-expression-wrappers@^7.12.1", "@babel/helper-skip-transparent-expression-wrappers@^7.14.5"
, "@babel/helper-skip-transparent-expression-wrappers@^7.15.4"
:
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.1
5.4.tgz#707dbdba1f4ad0fa34f9114fc8197aec7d5da2eb
"
integrity sha1-
cH29uh9K0Po0+RFPyBl67H1dous
=
dependencies:
"@babel/types" "^7.1
4.5
"
"@babel/types" "^7.1
5.4
"
"@babel/helper-split-export-declaration@^7.1
4.5
":
version "7.1
4.5
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-split-export-declaration/-/helper-split-export-declaration-7.1
4.5.tgz#22b23a54ef51c2b7605d851930c1976dd0bc693a
"
integrity sha1-
IrI6VO9RwrdgXYUZMMGXbdC8aTo
=
"@babel/helper-split-export-declaration@^7.1
5.4
":
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-split-export-declaration/-/helper-split-export-declaration-7.1
5.4.tgz#aecab92dcdbef6a10aa3b62ab204b085f776e257
"
integrity sha1-
rsq5Lc2+9qEKo7YqsgSwhfd24lc
=
dependencies:
"@babel/types" "^7.1
4.5
"
"@babel/types" "^7.1
5.4
"
"@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9":
version "7.14.9"
...
...
@@ -293,24 +293,24 @@
resolved "http://npm.dui88.com:80/@babel%2fhelper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3"
integrity sha1-bnKh//GNXfy4eOHmLxoCHEty1aM=
"@babel/helper-wrap-function@^7.1
4.5
":
version "7.1
4.5
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-wrap-function/-/helper-wrap-function-7.1
4.5.tgz#5919d115bf0fe328b8a5d63bcb610f51601f2bff
"
integrity sha1-
WRnRFb8P4yi4pdY7y2EPUWAfK/8
=
"@babel/helper-wrap-function@^7.1
5.4
":
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fhelper-wrap-function/-/helper-wrap-function-7.1
5.4.tgz#6f754b2446cfaf3d612523e6ab8d79c27c3a3de7
"
integrity sha1-
b3VLJEbPrz1hJSPmq415wnw6Pec
=
dependencies:
"@babel/helper-function-name" "^7.1
4.5
"
"@babel/template" "^7.1
4.5
"
"@babel/traverse" "^7.1
4.5
"
"@babel/types" "^7.1
4.5
"
"@babel/helper-function-name" "^7.1
5.4
"
"@babel/template" "^7.1
5.4
"
"@babel/traverse" "^7.1
5.4
"
"@babel/types" "^7.1
5.4
"
"@babel/helpers@^7.12.1", "@babel/helpers@^7.1
4.8
":
version "7.15.
3
"
resolved "http://npm.dui88.com:80/@babel%2fhelpers/-/helpers-7.15.
3.tgz#c96838b752b95dcd525b4e741ed40bb1dc2a1357
"
integrity sha1-
yWg4t1K5Xc1SW050HtQLsdwqE1c
=
"@babel/helpers@^7.12.1", "@babel/helpers@^7.1
5.4
":
version "7.15.
4
"
resolved "http://npm.dui88.com:80/@babel%2fhelpers/-/helpers-7.15.
4.tgz#5f40f02050a3027121a3cf48d497c05c555eaf43
"
integrity sha1-
X0DwIFCjAnEho89I1JfAXFVer0M
=
dependencies:
"@babel/template" "^7.1
4.5
"
"@babel/traverse" "^7.15.
0
"
"@babel/types" "^7.15.
0
"
"@babel/template" "^7.1
5.4
"
"@babel/traverse" "^7.15.
4
"
"@babel/types" "^7.15.
4
"
"@babel/highlight@^7.10.4", "@babel/highlight@^7.14.5":
version "7.14.5"
...
...
@@ -321,27 +321,27 @@
chalk "^2.0.0"
js-tokens "^4.0.0"
"@babel/parser@^7.1.0", "@babel/parser@^7.12.3", "@babel/parser@^7.1
4.5", "@babel/parser@^7.15.0
", "@babel/parser@^7.7.0":
version "7.15.
3
"
resolved "http://npm.dui88.com:80/@babel%2fparser/-/parser-7.15.
3.tgz#3416d9bea748052cfcb63dbcc27368105b1ed862
"
integrity sha1-
NBbZvqdIBSz8tj28wnNoEFse2GI
=
"@babel/parser@^7.1.0", "@babel/parser@^7.12.3", "@babel/parser@^7.1
5.4", "@babel/parser@^7.15.5
", "@babel/parser@^7.7.0":
version "7.15.
6
"
resolved "http://npm.dui88.com:80/@babel%2fparser/-/parser-7.15.
6.tgz#043b9aa3c303c0722e5377fef9197f4cf1796549
"
integrity sha1-
BDuao8MDwHIuU3f++Rl/TPF5ZUk
=
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.1
4.5
":
version "7.1
4.5
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.1
4.5.tgz#4b467302e1548ed3b1be43beae2cc9cf45e0bb
7e"
integrity sha1-
S0ZzAuFUjtOxvkO+rizJz0Xgu3
4=
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.1
5.4
":
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.1
5.4.tgz#dbdeabb1e80f622d9f0b583efb2999605e0a56
7e"
integrity sha1-
296rsegPYi2fC1g++ymZYF4KVn
4=
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/helper-skip-transparent-expression-wrappers" "^7.1
4.5
"
"@babel/helper-skip-transparent-expression-wrappers" "^7.1
5.4
"
"@babel/plugin-proposal-optional-chaining" "^7.14.5"
"@babel/plugin-proposal-async-generator-functions@^7.12.1", "@babel/plugin-proposal-async-generator-functions@^7.1
4.9
":
version "7.1
4.9
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.1
4.9.tgz#7028dc4fa21dc199bbacf98b39bab1267d0eaf9a
"
integrity sha1-
cCjcT6IdwZm7rPmLObqxJn0Or5o
=
"@babel/plugin-proposal-async-generator-functions@^7.12.1", "@babel/plugin-proposal-async-generator-functions@^7.1
5.4
":
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.1
5.4.tgz#f82aabe96c135d2ceaa917feb9f5fca31635277e
"
integrity sha1-
+Cqr6WwTXSzqqRf+ufX8oxY1J34
=
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/helper-remap-async-to-generator" "^7.1
4.5
"
"@babel/helper-remap-async-to-generator" "^7.1
5.4
"
"@babel/plugin-syntax-async-generators" "^7.8.4"
"@babel/plugin-proposal-class-properties@7.12.1":
...
...
@@ -360,12 +360,12 @@
"@babel/helper-create-class-features-plugin" "^7.14.5"
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-proposal-class-static-block@^7.1
4.5
":
version "7.1
4.5
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.1
4.5.tgz#158e9e10d449c3849ef3ecde94a03d9f1841b681
"
integrity sha1-
FY6eENRJw4Se8+zelKA9nxhBtoE
=
"@babel/plugin-proposal-class-static-block@^7.1
5.4
":
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.1
5.4.tgz#3e7ca6128453c089e8b477a99f970c63fc1cb8d7
"
integrity sha1-
PnymEoRTwInotHepn5cMY/wcuNc
=
dependencies:
"@babel/helper-create-class-features-plugin" "^7.1
4.5
"
"@babel/helper-create-class-features-plugin" "^7.1
5.4
"
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-class-static-block" "^7.14.5"
...
...
@@ -442,16 +442,16 @@
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-numeric-separator" "^7.10.4"
"@babel/plugin-proposal-object-rest-spread@^7.12.1", "@babel/plugin-proposal-object-rest-spread@^7.1
4.7
":
version "7.1
4.7
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.1
4.7.tgz#5920a2b3df7f7901df0205974c0641b13fd9d363
"
integrity sha1-
WSCis99/eQHfAgWXTAZBsT/Z02M
=
"@babel/plugin-proposal-object-rest-spread@^7.12.1", "@babel/plugin-proposal-object-rest-spread@^7.1
5.6
":
version "7.1
5.6
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.1
5.6.tgz#ef68050c8703d07b25af402cb96cf7f34a68ed11
"
integrity sha1-
72gFDIcD0Hslr0AsuWz380po7RE
=
dependencies:
"@babel/compat-data" "^7.1
4.7
"
"@babel/helper-compilation-targets" "^7.1
4.5
"
"@babel/compat-data" "^7.1
5.0
"
"@babel/helper-compilation-targets" "^7.1
5.4
"
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-object-rest-spread" "^7.8.3"
"@babel/plugin-transform-parameters" "^7.1
4.5
"
"@babel/plugin-transform-parameters" "^7.1
5.4
"
"@babel/plugin-proposal-optional-catch-binding@^7.12.1", "@babel/plugin-proposal-optional-catch-binding@^7.14.5":
version "7.14.5"
...
...
@@ -487,13 +487,13 @@
"@babel/helper-create-class-features-plugin" "^7.14.5"
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-proposal-private-property-in-object@^7.1
4.5
":
version "7.1
4.5
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.1
4.5.tgz#9f65a4d0493a940b4c01f8aa9d3f1894a587f636
"
integrity sha1-
n2Wk0Ek6lAtMAfiqnT8YlKWH9jY
=
"@babel/plugin-proposal-private-property-in-object@^7.1
5.4
":
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.1
5.4.tgz#55c5e3b4d0261fd44fe637e3f624cfb0f484e3e5
"
integrity sha1-
VcXjtNAmH9RP5jfj9iTPsPSE4+U
=
dependencies:
"@babel/helper-annotate-as-pure" "^7.1
4.5
"
"@babel/helper-create-class-features-plugin" "^7.1
4.5
"
"@babel/helper-annotate-as-pure" "^7.1
5.4
"
"@babel/helper-create-class-features-plugin" "^7.1
5.4
"
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-private-property-in-object" "^7.14.5"
...
...
@@ -668,24 +668,24 @@
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-transform-block-scoping@^7.12.1", "@babel/plugin-transform-block-scoping@^7.1
4.5
":
"@babel/plugin-transform-block-scoping@^7.12.1", "@babel/plugin-transform-block-scoping@^7.1
5.3
":
version "7.15.3"
resolved "http://npm.dui88.com:80/@babel%2fplugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz#94c81a6e2fc230bcce6ef537ac96a1e4d2b3afaf"
integrity sha1-lMgabi/CMLzObvU3rJah5NKzr68=
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-transform-classes@^7.12.1", "@babel/plugin-transform-classes@^7.1
4.9
":
version "7.1
4.9
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-transform-classes/-/plugin-transform-classes-7.1
4.9.tgz#2a391ffb1e5292710b00f2e2c210e1435e7d449f
"
integrity sha1-
Kjkf+x5SknELAPLiwhDhQ159RJ8
=
"@babel/plugin-transform-classes@^7.12.1", "@babel/plugin-transform-classes@^7.1
5.4
":
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-transform-classes/-/plugin-transform-classes-7.1
5.4.tgz#50aee17aaf7f332ae44e3bce4c2e10534d5d3bf1
"
integrity sha1-
UK7heq9/MyrkTjvOTC4QU01dO/E
=
dependencies:
"@babel/helper-annotate-as-pure" "^7.1
4.5
"
"@babel/helper-function-name" "^7.1
4.5
"
"@babel/helper-optimise-call-expression" "^7.1
4.5
"
"@babel/helper-annotate-as-pure" "^7.1
5.4
"
"@babel/helper-function-name" "^7.1
5.4
"
"@babel/helper-optimise-call-expression" "^7.1
5.4
"
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/helper-replace-supers" "^7.1
4.5
"
"@babel/helper-split-export-declaration" "^7.1
4.5
"
"@babel/helper-replace-supers" "^7.1
5.4
"
"@babel/helper-split-export-declaration" "^7.1
5.4
"
globals "^11.1.0"
"@babel/plugin-transform-computed-properties@^7.12.1", "@babel/plugin-transform-computed-properties@^7.14.5":
...
...
@@ -733,10 +733,10 @@
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-flow" "^7.12.1"
"@babel/plugin-transform-for-of@^7.12.1", "@babel/plugin-transform-for-of@^7.1
4.5
":
version "7.1
4.5
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-transform-for-of/-/plugin-transform-for-of-7.1
4.5.tgz#dae384613de8f77c196a8869cbf602a44f7fc0eb
"
integrity sha1-
2uOEYT3o93wZaohpy/YCpE9/wOs
=
"@babel/plugin-transform-for-of@^7.12.1", "@babel/plugin-transform-for-of@^7.1
5.4
":
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-transform-for-of/-/plugin-transform-for-of-7.1
5.4.tgz#25c62cce2718cfb29715f416e75d5263fb36a8c2
"
integrity sha1-
JcYszicYz7KXFfQW511SY/s2qMI
=
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
...
...
@@ -771,25 +771,25 @@
"@babel/helper-plugin-utils" "^7.14.5"
babel-plugin-dynamic-import-node "^2.3.3"
"@babel/plugin-transform-modules-commonjs@^7.12.1", "@babel/plugin-transform-modules-commonjs@^7.15.
0
":
version "7.15.
0
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.
0.tgz#3305896e5835f953b5cdb363acd9e8c2219a528
1"
integrity sha1-
MwWJblg1+VO1zbNjrNnowiGaUo
E=
"@babel/plugin-transform-modules-commonjs@^7.12.1", "@babel/plugin-transform-modules-commonjs@^7.15.
4
":
version "7.15.
4
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.
4.tgz#8201101240eabb5a76c08ef61b2954f767b6b4c
1"
integrity sha1-
ggEQEkDqu1p2wI72GylU92e2tM
E=
dependencies:
"@babel/helper-module-transforms" "^7.15.
0
"
"@babel/helper-module-transforms" "^7.15.
4
"
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/helper-simple-access" "^7.1
4.8
"
"@babel/helper-simple-access" "^7.1
5.4
"
babel-plugin-dynamic-import-node "^2.3.3"
"@babel/plugin-transform-modules-systemjs@^7.12.1", "@babel/plugin-transform-modules-systemjs@^7.1
4.5
":
version "7.1
4.5
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.1
4.5.tgz#c75342ef8b30dcde4295d3401aae24e65638ed29
"
integrity sha1-
x1NC74sw3N5CldNAGq4k5lY47Sk
=
"@babel/plugin-transform-modules-systemjs@^7.12.1", "@babel/plugin-transform-modules-systemjs@^7.1
5.4
":
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.1
5.4.tgz#b42890c7349a78c827719f1d2d0cd38c7d268132
"
integrity sha1-
tCiQxzSaeMgncZ8dLQzTjH0mgTI
=
dependencies:
"@babel/helper-hoist-variables" "^7.1
4.5
"
"@babel/helper-module-transforms" "^7.1
4.5
"
"@babel/helper-hoist-variables" "^7.1
5.4
"
"@babel/helper-module-transforms" "^7.1
5.4
"
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/helper-validator-identifier" "^7.14.
5
"
"@babel/helper-validator-identifier" "^7.14.
9
"
babel-plugin-dynamic-import-node "^2.3.3"
"@babel/plugin-transform-modules-umd@^7.12.1", "@babel/plugin-transform-modules-umd@^7.14.5":
...
...
@@ -822,10 +822,10 @@
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/helper-replace-supers" "^7.14.5"
"@babel/plugin-transform-parameters@^7.12.1", "@babel/plugin-transform-parameters@^7.1
4.5
":
version "7.1
4.5
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-transform-parameters/-/plugin-transform-parameters-7.1
4.5.tgz#49662e86a1f3ddccac6363a7dfb1ff0a158afeb3
"
integrity sha1-
SWYuhqHz3cysY2On37H/ChWK/rM
=
"@babel/plugin-transform-parameters@^7.12.1", "@babel/plugin-transform-parameters@^7.1
5.4
":
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-transform-parameters/-/plugin-transform-parameters-7.1
5.4.tgz#5f2285cc3160bf48c8502432716b48504d29ed62
"
integrity sha1-
XyKFzDFgv0jIUCQycWtIUE0p7WI
=
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
...
...
@@ -958,11 +958,11 @@
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-transform-typescript@^7.12.1":
version "7.15.
0
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-transform-typescript/-/plugin-transform-typescript-7.15.
0.tgz#553f230b9d5385018716586fc48db10dd228eb7e
"
integrity sha1-
VT8jC51ThQGHFlhvxI2xDdIo634
=
version "7.15.
4
"
resolved "http://npm.dui88.com:80/@babel%2fplugin-transform-typescript/-/plugin-transform-typescript-7.15.
4.tgz#db7a062dcf8be5fc096bc0eeb40a13fbfa1fa251
"
integrity sha1-
23oGLc+L5fwJa8DutAoT+/ofolE
=
dependencies:
"@babel/helper-create-class-features-plugin" "^7.15.
0
"
"@babel/helper-create-class-features-plugin" "^7.15.
4
"
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-typescript" "^7.14.5"
...
...
@@ -1054,29 +1054,29 @@
semver "^5.5.0"
"@babel/preset-env@^7.12.1", "@babel/preset-env@^7.8.4":
version "7.15.
0
"
resolved "http://npm.dui88.com:80/@babel%2fpreset-env/-/preset-env-7.15.
0.tgz#e2165bf16594c9c05e52517a194bf6187d6fe464
"
integrity sha1-
4hZb8WWUycBeUlF6GUv2GH1v5GQ
=
version "7.15.
6
"
resolved "http://npm.dui88.com:80/@babel%2fpreset-env/-/preset-env-7.15.
6.tgz#0f3898db9d63d320f21b17380d8462779de57659
"
integrity sha1-
DziY251j0yDyGxc4DYRid53ldlk
=
dependencies:
"@babel/compat-data" "^7.15.0"
"@babel/helper-compilation-targets" "^7.15.
0
"
"@babel/helper-compilation-targets" "^7.15.
4
"
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/helper-validator-option" "^7.14.5"
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.1
4.5
"
"@babel/plugin-proposal-async-generator-functions" "^7.1
4.9
"
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.1
5.4
"
"@babel/plugin-proposal-async-generator-functions" "^7.1
5.4
"
"@babel/plugin-proposal-class-properties" "^7.14.5"
"@babel/plugin-proposal-class-static-block" "^7.1
4.5
"
"@babel/plugin-proposal-class-static-block" "^7.1
5.4
"
"@babel/plugin-proposal-dynamic-import" "^7.14.5"
"@babel/plugin-proposal-export-namespace-from" "^7.14.5"
"@babel/plugin-proposal-json-strings" "^7.14.5"
"@babel/plugin-proposal-logical-assignment-operators" "^7.14.5"
"@babel/plugin-proposal-nullish-coalescing-operator" "^7.14.5"
"@babel/plugin-proposal-numeric-separator" "^7.14.5"
"@babel/plugin-proposal-object-rest-spread" "^7.1
4.7
"
"@babel/plugin-proposal-object-rest-spread" "^7.1
5.6
"
"@babel/plugin-proposal-optional-catch-binding" "^7.14.5"
"@babel/plugin-proposal-optional-chaining" "^7.14.5"
"@babel/plugin-proposal-private-methods" "^7.14.5"
"@babel/plugin-proposal-private-property-in-object" "^7.1
4.5
"
"@babel/plugin-proposal-private-property-in-object" "^7.1
5.4
"
"@babel/plugin-proposal-unicode-property-regex" "^7.14.5"
"@babel/plugin-syntax-async-generators" "^7.8.4"
"@babel/plugin-syntax-class-properties" "^7.12.13"
...
...
@@ -1095,25 +1095,25 @@
"@babel/plugin-transform-arrow-functions" "^7.14.5"
"@babel/plugin-transform-async-to-generator" "^7.14.5"
"@babel/plugin-transform-block-scoped-functions" "^7.14.5"
"@babel/plugin-transform-block-scoping" "^7.1
4.5
"
"@babel/plugin-transform-classes" "^7.1
4.9
"
"@babel/plugin-transform-block-scoping" "^7.1
5.3
"
"@babel/plugin-transform-classes" "^7.1
5.4
"
"@babel/plugin-transform-computed-properties" "^7.14.5"
"@babel/plugin-transform-destructuring" "^7.14.7"
"@babel/plugin-transform-dotall-regex" "^7.14.5"
"@babel/plugin-transform-duplicate-keys" "^7.14.5"
"@babel/plugin-transform-exponentiation-operator" "^7.14.5"
"@babel/plugin-transform-for-of" "^7.1
4.5
"
"@babel/plugin-transform-for-of" "^7.1
5.4
"
"@babel/plugin-transform-function-name" "^7.14.5"
"@babel/plugin-transform-literals" "^7.14.5"
"@babel/plugin-transform-member-expression-literals" "^7.14.5"
"@babel/plugin-transform-modules-amd" "^7.14.5"
"@babel/plugin-transform-modules-commonjs" "^7.15.
0
"
"@babel/plugin-transform-modules-systemjs" "^7.1
4.5
"
"@babel/plugin-transform-modules-commonjs" "^7.15.
4
"
"@babel/plugin-transform-modules-systemjs" "^7.1
5.4
"
"@babel/plugin-transform-modules-umd" "^7.14.5"
"@babel/plugin-transform-named-capturing-groups-regex" "^7.14.9"
"@babel/plugin-transform-new-target" "^7.14.5"
"@babel/plugin-transform-object-super" "^7.14.5"
"@babel/plugin-transform-parameters" "^7.1
4.5
"
"@babel/plugin-transform-parameters" "^7.1
5.4
"
"@babel/plugin-transform-property-literals" "^7.14.5"
"@babel/plugin-transform-regenerator" "^7.14.5"
"@babel/plugin-transform-reserved-words" "^7.14.5"
...
...
@@ -1125,7 +1125,7 @@
"@babel/plugin-transform-unicode-escapes" "^7.14.5"
"@babel/plugin-transform-unicode-regex" "^7.14.5"
"@babel/preset-modules" "^0.1.4"
"@babel/types" "^7.15.
0
"
"@babel/types" "^7.15.
6
"
babel-plugin-polyfill-corejs2 "^0.2.2"
babel-plugin-polyfill-corejs3 "^0.2.2"
babel-plugin-polyfill-regenerator "^0.2.2"
...
...
@@ -1177,9 +1177,9 @@
"@babel/plugin-transform-typescript" "^7.12.1"
"@babel/runtime-corejs3@^7.10.2":
version "7.15.
3
"
resolved "http://npm.dui88.com:80/@babel%2fruntime-corejs3/-/runtime-corejs3-7.15.
3.tgz#28754263988198f2a928c09733ade2fb4d28089d
"
integrity sha1-
KHVCY5iBmPKpKMCXM63i+00oCJ0
=
version "7.15.
4
"
resolved "http://npm.dui88.com:80/@babel%2fruntime-corejs3/-/runtime-corejs3-7.15.
4.tgz#403139af262b9a6e8f9ba04a6fdcebf8de692bf1
"
integrity sha1-
QDE5ryYrmm6Pm6BKb9zr+N5pK/E
=
dependencies:
core-js-pure "^3.16.0"
regenerator-runtime "^0.13.4"
...
...
@@ -1192,40 +1192,40 @@
regenerator-runtime "^0.13.4"
"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.1", "@babel/runtime@^7.10.2", "@babel/runtime@^7.10.4", "@babel/runtime@^7.11.1", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2":
version "7.15.
3
"
resolved "http://npm.dui88.com:80/@babel%2fruntime/-/runtime-7.15.
3.tgz#2e1c2880ca118e5b2f9988322bd8a7656a32502b
"
integrity sha1-
LhwogMoRjlsvmYgyK9inZWoyUCs
=
version "7.15.
4
"
resolved "http://npm.dui88.com:80/@babel%2fruntime/-/runtime-7.15.
4.tgz#fd17d16bfdf878e6dd02d19753a39fa8a8d9c84a
"
integrity sha1-
/RfRa/34eObdAtGXU6OfqKjZyEo
=
dependencies:
regenerator-runtime "^0.13.4"
"@babel/template@^7.10.4", "@babel/template@^7.1
4.5
", "@babel/template@^7.3.3":
version "7.1
4.5
"
resolved "http://npm.dui88.com:80/@babel%2ftemplate/-/template-7.1
4.5.tgz#a9bc9d8b33354ff6e55a9c60d1109200a68974f
4"
integrity sha1-
qbydizM1T/blWpxg0RCSAKaJdP
Q=
"@babel/template@^7.10.4", "@babel/template@^7.1
5.4
", "@babel/template@^7.3.3":
version "7.1
5.4
"
resolved "http://npm.dui88.com:80/@babel%2ftemplate/-/template-7.1
5.4.tgz#51898d35dcf3faa670c4ee6afcfd517ee139f19
4"
integrity sha1-
UYmNNdzz+qZwxO5q/P1RfuE58Z
Q=
dependencies:
"@babel/code-frame" "^7.14.5"
"@babel/parser" "^7.1
4.5
"
"@babel/types" "^7.1
4.5
"
"@babel/parser" "^7.1
5.4
"
"@babel/types" "^7.1
5.4
"
"@babel/traverse@^7.1.0", "@babel/traverse@^7.12.1", "@babel/traverse@^7.13.0", "@babel/traverse@^7.1
4.5", "@babel/traverse@^7.15.0
", "@babel/traverse@^7.7.0":
version "7.15.
0
"
resolved "http://npm.dui88.com:80/@babel%2ftraverse/-/traverse-7.15.
0.tgz#4cca838fd1b2a03283c1f38e141f639d60b3fc98
"
integrity sha1-
TMqDj9GyoDKDwfOOFB9jnWCz/Jg
=
"@babel/traverse@^7.1.0", "@babel/traverse@^7.12.1", "@babel/traverse@^7.13.0", "@babel/traverse@^7.1
5.4
", "@babel/traverse@^7.7.0":
version "7.15.
4
"
resolved "http://npm.dui88.com:80/@babel%2ftraverse/-/traverse-7.15.
4.tgz#ff8510367a144bfbff552d9e18e28f3e2889c22d
"
integrity sha1-
/4UQNnoUS/v/VS2eGOKPPiiJwi0
=
dependencies:
"@babel/code-frame" "^7.14.5"
"@babel/generator" "^7.15.
0
"
"@babel/helper-function-name" "^7.1
4.5
"
"@babel/helper-hoist-variables" "^7.1
4.5
"
"@babel/helper-split-export-declaration" "^7.1
4.5
"
"@babel/parser" "^7.15.
0
"
"@babel/types" "^7.15.
0
"
"@babel/generator" "^7.15.
4
"
"@babel/helper-function-name" "^7.1
5.4
"
"@babel/helper-hoist-variables" "^7.1
5.4
"
"@babel/helper-split-export-declaration" "^7.1
5.4
"
"@babel/parser" "^7.15.
4
"
"@babel/types" "^7.15.
4
"
debug "^4.1.0"
globals "^11.1.0"
"@babel/types@^7.0.0", "@babel/types@^7.12.1", "@babel/types@^7.12.6", "@babel/types@^7.14.
5", "@babel/types@^7.14.8", "@babel/types@^7.14.9", "@babel/types@^7.15.0
", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0":
version "7.15.
0
"
resolved "http://npm.dui88.com:80/@babel%2ftypes/-/types-7.15.
0.tgz#61af11f2286c4e9c69ca8deb5f4375a73c72dcbd
"
integrity sha1-
Ya8R8ihsTpxpyo3rX0N1pzxy3L0
=
"@babel/types@^7.0.0", "@babel/types@^7.12.1", "@babel/types@^7.12.6", "@babel/types@^7.14.
9", "@babel/types@^7.15.4", "@babel/types@^7.15.6
", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0":
version "7.15.
6
"
resolved "http://npm.dui88.com:80/@babel%2ftypes/-/types-7.15.
6.tgz#99abdc48218b2881c058dd0a7ab05b99c9be758f
"
integrity sha1-
mavcSCGLKIHAWN0KerBbmcm+dY8
=
dependencies:
"@babel/helper-validator-identifier" "^7.14.9"
to-fast-properties "^2.0.0"
...
...
@@ -1273,6 +1273,11 @@
minimatch "^3.0.4"
strip-json-comments "^3.1.1"
"@gar/promisify@^1.0.1":
version "1.1.2"
resolved "http://npm.dui88.com:80/@gar%2fpromisify/-/promisify-1.1.2.tgz#30aa825f11d438671d585bd44e7fd564535fc210"
integrity sha1-MKqCXxHUOGcdWFvUTn/VZFNfwhA=
"@hapi/address@2.x.x":
version "2.1.4"
resolved "http://npm.dui88.com:80/@hapi%2faddress/-/address-2.1.4.tgz#5d67ed43f3fd41a69d4b9ff7b56e7c0d1d0a81e5"
...
...
@@ -1506,10 +1511,10 @@
"@types/yargs" "^15.0.0"
chalk "^4.0.0"
"@jest/types@^27.
0.6
":
version "27.
0.6
"
resolved "http://npm.dui88.com:80/@jest%2ftypes/-/types-27.
0.6.tgz#9a992bc517e0c49f035938b8549719c2de40706b
"
integrity sha1-
mpkrxRfgxJ8DWTi4VJcZwt5AcGs
=
"@jest/types@^27.
1.1
":
version "27.
1.1
"
resolved "http://npm.dui88.com:80/@jest%2ftypes/-/types-27.
1.1.tgz#77a3fc014f906c65752d12123a0134359707c0ad
"
integrity sha1-
d6P8AU+QbGV1LRISOgE0NZcHwK0
=
dependencies:
"@types/istanbul-lib-coverage" "^2.0.0"
"@types/istanbul-reports" "^3.0.0"
...
...
@@ -1538,6 +1543,14 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"
"@npmcli/fs@^1.0.0":
version "1.0.0"
resolved "http://npm.dui88.com:80/@npmcli%2ffs/-/fs-1.0.0.tgz#589612cfad3a6ea0feafcb901d29c63fd52db09f"
integrity sha1-WJYSz606bqD+r8uQHSnGP9UtsJ8=
dependencies:
"@gar/promisify" "^1.0.1"
semver "^7.3.5"
"@npmcli/move-file@^1.0.1":
version "1.1.2"
resolved "http://npm.dui88.com:80/@npmcli%2fmove-file/-/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674"
...
...
@@ -1766,9 +1779,9 @@
integrity sha1-7U4K2SMGpwT5+xMqDPz3dIbb4rw=
"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7":
version "7.1.1
5
"
resolved "http://npm.dui88.com:80/@types%2fbabel__core/-/babel__core-7.1.1
5.tgz#2ccfb1ad55a02c83f8e0ad327cbc332f55eb1024
"
integrity sha1-
LM+xrVWgLIP44K0yfLwzL1XrECQ
=
version "7.1.1
6
"
resolved "http://npm.dui88.com:80/@types%2fbabel__core/-/babel__core-7.1.1
6.tgz#bc12c74b7d65e82d29876b5d0baf5c625ac58702
"
integrity sha1-
vBLHS31l6C0ph2tdC69cYlrFhwI
=
dependencies:
"@babel/parser" "^7.1.0"
"@babel/types" "^7.0.0"
...
...
@@ -1868,15 +1881,20 @@
resolved "http://npm.dui88.com:80/@types%2fjson-schema/-/json-schema-7.0.9.tgz#97edc9037ea0c38585320b28964dde3b39e4660d"
integrity sha1-l+3JA36gw4WFMgsolk3eOznkZg0=
"@types/json5@^0.0.29":
version "0.0.29"
resolved "http://npm.dui88.com:80/@types%2fjson5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
"@types/minimatch@*":
version "3.0.5"
resolved "http://npm.dui88.com:80/@types%2fminimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40"
integrity sha1-EAHMXmo3BLg8I2An538vWOoBD0A=
"@types/node@*":
version "16.
6.2
"
resolved "http://npm.dui88.com:80/@types%2fnode/-/node-16.
6.2.tgz#331b7b9f8621c638284787c5559423822fdffc50
"
integrity sha1-
Mxt7n4YhxjgoR4fFVZQjgi/f/FA
=
version "16.
9.1
"
resolved "http://npm.dui88.com:80/@types%2fnode/-/node-16.
9.1.tgz#0611b37db4246c937feef529ddcc018cf8e35708
"
integrity sha1-
BhGzfbQkbJN/7vUp3cwBjPjjVwg
=
"@types/normalize-package-data@^2.4.0":
version "2.4.1"
...
...
@@ -1904,9 +1922,9 @@
integrity sha1-daKo59irSyMEFFBdkjNdHctTpt8=
"@types/react@^17.0.19":
version "17.0.
19
"
resolved "http://npm.dui88.com:80/@types%2freact/-/react-17.0.
19.tgz#8f2a85e8180a43b57966b237d26a29481dacc991
"
integrity sha1-
jyqF6BgKQ7V5ZrI30mopSB2syZE
=
version "17.0.
20
"
resolved "http://npm.dui88.com:80/@types%2freact/-/react-17.0.
20.tgz#a4284b184d47975c71658cd69e759b6bd37c3b8c
"
integrity sha1-
pChLGE1Hl1xxZYzWnnWba9N8O4w
=
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
...
...
@@ -1963,9 +1981,9 @@
source-map "^0.7.3"
"@types/webpack@^4.41.8":
version "4.41.3
0
"
resolved "http://npm.dui88.com:80/@types%2fwebpack/-/webpack-4.41.3
0.tgz#fd3db6d0d41e145a8eeeafcd3c4a7ccde9068ddc
"
integrity sha1-
/T220NQeFFqO7q/NPEp8zekGjdw
=
version "4.41.3
1
"
resolved "http://npm.dui88.com:80/@types%2fwebpack/-/webpack-4.41.3
1.tgz#c35f252a3559ddf9c85c0d8b0b42019025e581aa
"
integrity sha1-
w18lKjVZ3fnIXA2LC0IBkCXlgao
=
dependencies:
"@types/node" "*"
"@types/tapable" "^1"
...
...
@@ -1994,27 +2012,27 @@
"@types/yargs-parser" "*"
"@typescript-eslint/eslint-plugin@^4.5.0":
version "4.
29.2
"
resolved "http://npm.dui88.com:80/@typescript-eslint%2feslint-plugin/-/eslint-plugin-4.
29.2.tgz#f54dc0a32b8f61c6024ab8755da05363b733838d
"
integrity sha1-
9U3AoyuPYcYCSrh1XaBTY7czg40
=
version "4.
31.1
"
resolved "http://npm.dui88.com:80/@typescript-eslint%2feslint-plugin/-/eslint-plugin-4.
31.1.tgz#e938603a136f01dcabeece069da5fb2e331d4498
"
integrity sha1-
6ThgOhNvAdyr7s4GnaX7LjMdRJg
=
dependencies:
"@typescript-eslint/experimental-utils" "4.
29.2
"
"@typescript-eslint/scope-manager" "4.
29.2
"
"@typescript-eslint/experimental-utils" "4.
31.1
"
"@typescript-eslint/scope-manager" "4.
31.1
"
debug "^4.3.1"
functional-red-black-tree "^1.0.1"
regexpp "^3.1.0"
semver "^7.3.5"
tsutils "^3.21.0"
"@typescript-eslint/experimental-utils@4.
29.2
", "@typescript-eslint/experimental-utils@^4.0.1":
version "4.
29.2
"
resolved "http://npm.dui88.com:80/@typescript-eslint%2fexperimental-utils/-/experimental-utils-4.
29.2.tgz#5f67fb5c5757ef2cb3be64817468ba35c9d4e3b7
"
integrity sha1-
X2f7XFdX7yyzvmSBdGi6NcnU47c
=
"@typescript-eslint/experimental-utils@4.
31.1
", "@typescript-eslint/experimental-utils@^4.0.1":
version "4.
31.1
"
resolved "http://npm.dui88.com:80/@typescript-eslint%2fexperimental-utils/-/experimental-utils-4.
31.1.tgz#0c900f832f270b88e13e51753647b02d08371ce5
"
integrity sha1-
DJAPgy8nC4jhPlF1NkewLQg3HOU
=
dependencies:
"@types/json-schema" "^7.0.7"
"@typescript-eslint/scope-manager" "4.
29.2
"
"@typescript-eslint/types" "4.
29.2
"
"@typescript-eslint/typescript-estree" "4.
29.2
"
"@typescript-eslint/scope-manager" "4.
31.1
"
"@typescript-eslint/types" "4.
31.1
"
"@typescript-eslint/typescript-estree" "4.
31.1
"
eslint-scope "^5.1.1"
eslint-utils "^3.0.0"
...
...
@@ -2030,32 +2048,32 @@
eslint-utils "^2.0.0"
"@typescript-eslint/parser@^4.5.0":
version "4.
29.2
"
resolved "http://npm.dui88.com:80/@typescript-eslint%2fparser/-/parser-4.
29.2.tgz#1c7744f4c27aeb74610c955d3dce9250e95c370a
"
integrity sha1-
HHdE9MJ663RhDJVdPc6SUOlcNwo
=
version "4.
31.1
"
resolved "http://npm.dui88.com:80/@typescript-eslint%2fparser/-/parser-4.
31.1.tgz#8f9a2672033e6f6d33b1c0260eebdc0ddf539064
"
integrity sha1-
j5omcgM+b20zscAmDuvcDd9TkGQ
=
dependencies:
"@typescript-eslint/scope-manager" "4.
29.2
"
"@typescript-eslint/types" "4.
29.2
"
"@typescript-eslint/typescript-estree" "4.
29.2
"
"@typescript-eslint/scope-manager" "4.
31.1
"
"@typescript-eslint/types" "4.
31.1
"
"@typescript-eslint/typescript-estree" "4.
31.1
"
debug "^4.3.1"
"@typescript-eslint/scope-manager@4.
29.2
":
version "4.
29.2
"
resolved "http://npm.dui88.com:80/@typescript-eslint%2fscope-manager/-/scope-manager-4.
29.2.tgz#442b0f029d981fa402942715b1718ac7fcd5aa1b
"
integrity sha1-
RCsPAp2YH6QClCcVsXGKx/zVqhs
=
"@typescript-eslint/scope-manager@4.
31.1
":
version "4.
31.1
"
resolved "http://npm.dui88.com:80/@typescript-eslint%2fscope-manager/-/scope-manager-4.
31.1.tgz#0c21e8501f608d6a25c842fcf59541ef4f1ab561
"
integrity sha1-
DCHoUB9gjWolyEL89ZVB708atWE
=
dependencies:
"@typescript-eslint/types" "4.
29.2
"
"@typescript-eslint/visitor-keys" "4.
29.2
"
"@typescript-eslint/types" "4.
31.1
"
"@typescript-eslint/visitor-keys" "4.
31.1
"
"@typescript-eslint/types@3.10.1":
version "3.10.1"
resolved "http://npm.dui88.com:80/@typescript-eslint%2ftypes/-/types-3.10.1.tgz#1d7463fa7c32d8a23ab508a803ca2fe26e758727"
integrity sha1-HXRj+nwy2KI6tQioA8ov4m51hyc=
"@typescript-eslint/types@4.
29.2
":
version "4.
29.2
"
resolved "http://npm.dui88.com:80/@typescript-eslint%2ftypes/-/types-4.
29.2.tgz#fc0489c6b89773f99109fb0aa0aaddff21f52fcd
"
integrity sha1-
/ASJxriXc/mRCfsKoKrd/yH1L80
=
"@typescript-eslint/types@4.
31.1
":
version "4.
31.1
"
resolved "http://npm.dui88.com:80/@typescript-eslint%2ftypes/-/types-4.
31.1.tgz#5f255b695627a13401d2fdba5f7138bc79450d66
"
integrity sha1-
XyVbaVYnoTQB0v26X3E4vHlFDWY
=
"@typescript-eslint/typescript-estree@3.10.1":
version "3.10.1"
...
...
@@ -2071,13 +2089,13 @@
semver "^7.3.2"
tsutils "^3.17.1"
"@typescript-eslint/typescript-estree@4.
29.2
":
version "4.
29.2
"
resolved "http://npm.dui88.com:80/@typescript-eslint%2ftypescript-estree/-/typescript-estree-4.
29.2.tgz#a0ea8b98b274adbb2577100ba545ddf8bf7dc219
"
integrity sha1-
oOqLmLJ0rbsldxALpUXd+L99whk
=
"@typescript-eslint/typescript-estree@4.
31.1
":
version "4.
31.1
"
resolved "http://npm.dui88.com:80/@typescript-eslint%2ftypescript-estree/-/typescript-estree-4.
31.1.tgz#4a04d5232cf1031232b7124a9c0310b577a62d17
"
integrity sha1-
SgTVIyzxAxIytxJKnAMQtXemLRc
=
dependencies:
"@typescript-eslint/types" "4.
29.2
"
"@typescript-eslint/visitor-keys" "4.
29.2
"
"@typescript-eslint/types" "4.
31.1
"
"@typescript-eslint/visitor-keys" "4.
31.1
"
debug "^4.3.1"
globby "^11.0.3"
is-glob "^4.0.1"
...
...
@@ -2091,12 +2109,12 @@
dependencies:
eslint-visitor-keys "^1.1.0"
"@typescript-eslint/visitor-keys@4.
29.2
":
version "4.
29.2
"
resolved "http://npm.dui88.com:80/@typescript-eslint%2fvisitor-keys/-/visitor-keys-4.
29.2.tgz#d2da7341f3519486f50655159f4e5ecdcb2cd1df
"
integrity sha1-
0tpzQfNRlIb1BlUVn05ezcss0d8
=
"@typescript-eslint/visitor-keys@4.
31.1
":
version "4.
31.1
"
resolved "http://npm.dui88.com:80/@typescript-eslint%2fvisitor-keys/-/visitor-keys-4.
31.1.tgz#f2e7a14c7f20c4ae07d7fc3c5878c4441a1da9cc
"
integrity sha1-
8uehTH8gxK4H1/w8WHjERBodqcw
=
dependencies:
"@typescript-eslint/types" "4.
29.2
"
"@typescript-eslint/types" "4.
31.1
"
eslint-visitor-keys "^2.0.0"
"@webassemblyjs/ast@1.9.0":
...
...
@@ -2301,9 +2319,9 @@ acorn@^7.1.0, acorn@^7.1.1, acorn@^7.4.0:
integrity sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo=
acorn@^8.2.4:
version "8.
4.1
"
resolved "http://npm.dui88.com:80/acorn/-/acorn-8.
4.1.tgz#56c36251fc7cabc7096adc18f05afe814321a28c
"
integrity sha1-
VsNiUfx8q8cJatwY8Fr+gUMhoow
=
version "8.
5.0
"
resolved "http://npm.dui88.com:80/acorn/-/acorn-8.
5.0.tgz#4512ccb99b3698c752591e9bb4472e38ad43cee2
"
integrity sha1-
RRLMuZs2mMdSWR6btEcuOK1DzuI
=
address@1.1.2, address@^1.0.1:
version "1.1.2"
...
...
@@ -2354,9 +2372,9 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5:
uri-js "^4.2.2"
ajv@^8.0.1:
version "8.6.
2
"
resolved "http://npm.dui88.com:80/ajv/-/ajv-8.6.
2.tgz#2fb45e0e5fcbc0813326c1c3da535d1881bb0571
"
integrity sha1-
L7ReDl/LwIEzJsHD2lNdGIG7BXE
=
version "8.6.
3
"
resolved "http://npm.dui88.com:80/ajv/-/ajv-8.6.
3.tgz#11a66527761dc3e9a3845ea775d2d3c0414e8764
"
integrity sha1-
EaZlJ3Ydw+mjhF6nddLTwEFOh2Q
=
dependencies:
fast-deep-equal "^3.1.1"
json-schema-traverse "^1.0.0"
...
...
@@ -2508,9 +2526,9 @@ aproba@^1.0.3, aproba@^1.1.1:
integrity sha1-aALmJk79GMeQobDVF/DyYnvyyUo=
are-we-there-yet@~1.1.2:
version "1.1.
5
"
resolved "http://npm.dui88.com:80/are-we-there-yet/-/are-we-there-yet-1.1.
5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21
"
integrity sha1-
SzXClE8GKov82mZBB2A1D+nd/CE
=
version "1.1.
7
"
resolved "http://npm.dui88.com:80/are-we-there-yet/-/are-we-there-yet-1.1.
7.tgz#b15474a932adab4ff8a50d9adfa7e4e926f21146
"
integrity sha1-
sVR0qTKtq0/4pQ2a36fk6SbyEUY
=
dependencies:
delegates "^1.0.0"
readable-stream "^2.0.6"
...
...
@@ -2743,9 +2761,9 @@ aws4@^1.8.0:
integrity sha1-1h9G2DslGSUOJ4Ta9bCUeai0HFk=
axe-core@^4.0.2:
version "4.3.
2
"
resolved "http://npm.dui88.com:80/axe-core/-/axe-core-4.3.
2.tgz#fcf8777b82c62cfc69c7e9f32c0d2226287680e7
"
integrity sha1-
/Ph3e4LGLPxpx+nzLA0iJih2gOc
=
version "4.3.
3
"
resolved "http://npm.dui88.com:80/axe-core/-/axe-core-4.3.
3.tgz#b55cd8e8ddf659fe89b064680e1c6a4dceab0325
"
integrity sha1-
tVzY6N32Wf6JsGRoDhxqTc6rAyU
=
axobject-query@^2.2.0:
version "2.2.0"
...
...
@@ -3174,14 +3192,14 @@ browserslist@4.14.2:
escalade "^3.0.2"
node-releases "^1.1.61"
browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.16.6, browserslist@^4.1
6.7
, browserslist@^4.6.2, browserslist@^4.6.4:
version "4.1
6.8
"
resolved "http://npm.dui88.com:80/browserslist/-/browserslist-4.1
6.8.tgz#cb868b0b554f137ba6e33de0ecff2eda403c4fb0
"
integrity sha1-
y4aLC1VPE3um4z3g7P8u2kA8T7A
=
browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.16.6, browserslist@^4.1
7.0
, browserslist@^4.6.2, browserslist@^4.6.4:
version "4.1
7.0
"
resolved "http://npm.dui88.com:80/browserslist/-/browserslist-4.1
7.0.tgz#1fcd81ec75b41d6d4994fb0831b92ac18c01649c
"
integrity sha1-
H82B7HW0HW1JlPsIMbkqwYwBZJw
=
dependencies:
caniuse-lite "^1.0.3000125
1
"
caniuse-lite "^1.0.3000125
4
"
colorette "^1.3.0"
electron-to-chromium "^1.3.8
11
"
electron-to-chromium "^1.3.8
30
"
escalade "^3.1.1"
node-releases "^1.1.75"
...
...
@@ -3258,10 +3276,11 @@ cacache@^12.0.2:
y18n "^4.0.0"
cacache@^15.0.5:
version "15.
2
.0"
resolved "http://npm.dui88.com:80/cacache/-/cacache-15.
2.0.tgz#73af75f77c58e72d8c630a7a2858cb18ef523389
"
integrity sha1-
c69193xY5y2MYwp6KFjLGO9SM4k
=
version "15.
3
.0"
resolved "http://npm.dui88.com:80/cacache/-/cacache-15.
3.0.tgz#dc85380fb2f556fe3dda4c719bfa0ec875a7f1eb
"
integrity sha1-
3IU4D7L1Vv492kxxm/oOyHWn8es
=
dependencies:
"@npmcli/fs" "^1.0.0"
"@npmcli/move-file" "^1.0.1"
chownr "^2.0.0"
fs-minipass "^2.0.0"
...
...
@@ -3368,10 +3387,10 @@ caniuse-api@^3.0.0:
lodash.memoize "^4.1.2"
lodash.uniq "^4.5.0"
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.3000125
1
:
version "1.0.3000125
1
"
resolved "http://npm.dui88.com:80/caniuse-lite/-/caniuse-lite-1.0.3000125
1.tgz#6853a606ec50893115db660f82c094d18f096d8
5"
integrity sha1-
aFOmBuxQiTEV22YPgsCU0Y8JbY
U=
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001125, caniuse-lite@^1.0.3000125
4
:
version "1.0.3000125
7
"
resolved "http://npm.dui88.com:80/caniuse-lite/-/caniuse-lite-1.0.3000125
7.tgz#150aaf649a48bee531104cfeda57f92ce587f6e
5"
integrity sha1-
FQqvZJpIvuUxEEz+2lf5LOWH9u
U=
capture-exit@^2.0.0:
version "2.0.0"
...
...
@@ -3548,6 +3567,11 @@ cliui@^6.0.0:
strip-ansi "^6.0.0"
wrap-ansi "^6.2.0"
clsx@^1.1.1:
version "1.1.1"
resolved "http://npm.dui88.com:80/clsx/-/clsx-1.1.1.tgz#98b3134f9abbdf23b2663491ace13c5c03a73188"
integrity sha1-mLMTT5q73yOyZjSRrOE8XAOnMYg=
co@^4.6.0:
version "4.6.0"
resolved "http://npm.dui88.com:80/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
...
...
@@ -3621,9 +3645,9 @@ color@^3.0.0:
color-string "^1.6.0"
colorette@^1.2.1, colorette@^1.2.2, colorette@^1.3.0:
version "1.
3
.0"
resolved "http://npm.dui88.com:80/colorette/-/colorette-1.
3.0.tgz#ff45d2f0edb244069d3b772adeb04fed38d0a0af
"
integrity sha1-
/0XS8O2yRAadO3cq3rBP7TjQoK8
=
version "1.
4
.0"
resolved "http://npm.dui88.com:80/colorette/-/colorette-1.
4.0.tgz#5190fbb87276259a86ad700bff2c6d6faa3fca40
"
integrity sha1-
UZD7uHJ2JZqGrXAL/yxtb6o/ykA
=
combined-stream@^1.0.6, combined-stream@^1.0.8, combined-stream@~1.0.6:
version "1.0.8"
...
...
@@ -3795,17 +3819,17 @@ copy-to-clipboard@^3.2.0:
toggle-selection "^1.0.6"
core-js-compat@^3.14.0, core-js-compat@^3.16.0, core-js-compat@^3.6.2:
version "3.1
6.2
"
resolved "http://npm.dui88.com:80/core-js-compat/-/core-js-compat-3.1
6.2.tgz#442ef1d933ca6fc80859bd5a1db7a3ba716aaf56
"
integrity sha1-
RC7x2TPKb8gIWb1aHbejunFqr1Y
=
version "3.1
7.3
"
resolved "http://npm.dui88.com:80/core-js-compat/-/core-js-compat-3.1
7.3.tgz#b39c8e4dec71ecdc735c653ce5233466e561324e
"
integrity sha1-
s5yOTexx7NxzXGU85SM0ZuVhMk4
=
dependencies:
browserslist "^4.1
6.7
"
browserslist "^4.1
7.0
"
semver "7.0.0"
core-js-pure@^3.16.0:
version "3.1
6.2
"
resolved "http://npm.dui88.com:80/core-js-pure/-/core-js-pure-3.1
6.2.tgz#0ef4b79cabafb251ea86eb7d139b42bd98c533e8
"
integrity sha1-
DvS3nKuvslHqhut9E5tCvZjFM+g
=
version "3.1
7.3
"
resolved "http://npm.dui88.com:80/core-js-pure/-/core-js-pure-3.1
7.3.tgz#98ea3587188ab7ef4695db6518eeb71aec42604a
"
integrity sha1-
mOo1hxiKt+9GldtlGO63GuxCYEo
=
core-js@^2.4.0:
version "2.6.12"
...
...
@@ -3813,15 +3837,20 @@ core-js@^2.4.0:
integrity sha1-2TM9+nsGXjR8xWgiGdb2kIWcwuw=
core-js@^3.6.5:
version "3.1
6.2
"
resolved "http://npm.dui88.com:80/core-js/-/core-js-3.1
6.2.tgz#3f485822889c7fc48ef463e35be5cc2a4a01a1f4
"
integrity sha1-
P0hYIoicf8SO9GPjW+XMKkoBofQ
=
version "3.1
7.3
"
resolved "http://npm.dui88.com:80/core-js/-/core-js-3.1
7.3.tgz#8e8bd20e91df9951e903cabe91f9af4a0895bc1e
"
integrity sha1-
jovSDpHfmVHpA8q+kfmvSgiVvB4
=
core-util-is@1.0.2
, core-util-is@~1.0.0
:
core-util-is@1.0.2:
version "1.0.2"
resolved "http://npm.dui88.com:80/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
core-util-is@~1.0.0:
version "1.0.3"
resolved "http://npm.dui88.com:80/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85"
integrity sha1-pgQtNjTCsn6TKPg3uWX6yDgI24U=
cosmiconfig@^5.0.0:
version "5.2.1"
resolved "http://npm.dui88.com:80/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
...
...
@@ -3844,9 +3873,9 @@ cosmiconfig@^6.0.0:
yaml "^1.7.2"
cosmiconfig@^7.0.0:
version "7.0.
0
"
resolved "http://npm.dui88.com:80/cosmiconfig/-/cosmiconfig-7.0.
0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3
"
integrity sha1-
75tE13OVnK5j3ezRIt4jhTtg+NM
=
version "7.0.
1
"
resolved "http://npm.dui88.com:80/cosmiconfig/-/cosmiconfig-7.0.
1.tgz#714d756522cace867867ccb4474c5d01bbae5d6d
"
integrity sha1-
cU11ZSLKzoZ4Z8y0R0xdAbuuXW0
=
dependencies:
"@types/parse-json" "^4.0.0"
import-fresh "^3.2.1"
...
...
@@ -4172,9 +4201,9 @@ cssstyle@^2.3.0:
cssom "~0.3.6"
csstype@^3.0.2:
version "3.0.
8
"
resolved "http://npm.dui88.com:80/csstype/-/csstype-3.0.
8.tgz#d2266a792729fb227cd216fb572f43728e1ad340
"
integrity sha1-
0iZqeScp+yJ80hb7Vy9Dco4a00A
=
version "3.0.
9
"
resolved "http://npm.dui88.com:80/csstype/-/csstype-3.0.
9.tgz#6410af31b26bd0520933d02cbc64fce9ce3fbf0b
"
integrity sha1-
ZBCvMbJr0FIJM9AsvGT86c4/vws
=
currently-unhandled@^0.4.1:
version "0.4.1"
...
...
@@ -4223,9 +4252,9 @@ date-fns@2.x:
integrity sha1-TohslBZZrwz3sw+v3R6qN+iHiKk=
dayjs@1.x:
version "1.10.
6
"
resolved "http://npm.dui88.com:80/dayjs/-/dayjs-1.10.
6.tgz#288b2aa82f2d8418a6c9d4df5898c0737ad02a63
"
integrity sha1-
KIsqqC8thBimydTfWJjAc3rQKmM
=
version "1.10.
7
"
resolved "http://npm.dui88.com:80/dayjs/-/dayjs-1.10.
7.tgz#2cf5f91add28116748440866a0a1d26f3a6ce468
"
integrity sha1-
LPX5Gt0oEWdIRAhmoKHSbzps5Gg
=
debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0, debug@^2.6.9:
version "2.6.9"
...
...
@@ -4281,9 +4310,9 @@ deep-equal@^1.0.1:
regexp.prototype.flags "^1.2.0"
deep-is@^0.1.3, deep-is@~0.1.3:
version "0.1.
3
"
resolved "http://npm.dui88.com:80/deep-is/-/deep-is-0.1.
3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34
"
integrity sha1-
s2nW+128E+7PUk+RsHD+7cNXzzQ
=
version "0.1.
4
"
resolved "http://npm.dui88.com:80/deep-is/-/deep-is-0.1.
4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831
"
integrity sha1-
pvLc5hL63S7x9Rm3NVHxfoUZmDE
=
deepmerge@^4.2.2:
version "4.2.2"
...
...
@@ -4503,9 +4532,9 @@ domexception@^2.0.1:
webidl-conversions "^5.0.0"
domhandler@^4.0.0, domhandler@^4.2.0:
version "4.2.
0
"
resolved "http://npm.dui88.com:80/domhandler/-/domhandler-4.2.
0.tgz#f9768a5f034be60a89a27c2e4d0f74eba0d8b059
"
integrity sha1-
+XaKXwNL5gqJonwuTQ9066DYsFk
=
version "4.2.
2
"
resolved "http://npm.dui88.com:80/domhandler/-/domhandler-4.2.
2.tgz#e825d721d19a86b8c201a35264e226c678ee755f
"
integrity sha1-
6CXXIdGahrjCAaNSZOImxnjudV8
=
dependencies:
domelementtype "^2.2.0"
...
...
@@ -4518,9 +4547,9 @@ domutils@^1.7.0:
domelementtype "1"
domutils@^2.5.2, domutils@^2.6.0:
version "2.
7
.0"
resolved "http://npm.dui88.com:80/domutils/-/domutils-2.
7.0.tgz#8ebaf0c41ebafcf55b0b72ec31c56323712c5442
"
integrity sha1-
jrrwxB66/PVbC3LsMcVjI3EsVEI
=
version "2.
8
.0"
resolved "http://npm.dui88.com:80/domutils/-/domutils-2.
8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135
"
integrity sha1-
RDfe9dtuLR9dbuhZvZXKfQIEgTU
=
dependencies:
dom-serializer "^1.0.1"
domelementtype "^2.2.0"
...
...
@@ -4584,10 +4613,10 @@ ejs@^2.6.1:
resolved "http://npm.dui88.com:80/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba"
integrity sha1-SGYSh1c9zFPjZsehrlLDoSDuybo=
electron-to-chromium@^1.3.564, electron-to-chromium@^1.3.8
11
:
version "1.3.8
12
"
resolved "http://npm.dui88.com:80/electron-to-chromium/-/electron-to-chromium-1.3.8
12.tgz#4c4fb407e0e1335056097f172e9f2c0a09efe77
d"
integrity sha1-
TE+0B+DhM1BWCX8XLp8sCgnv53
0=
electron-to-chromium@^1.3.564, electron-to-chromium@^1.3.8
30
:
version "1.3.8
38
"
resolved "http://npm.dui88.com:80/electron-to-chromium/-/electron-to-chromium-1.3.8
38.tgz#d178b34a268c750c0444ba69e4c94d4c4fb3aa0
d"
integrity sha1-
0XizSiaMdQwERLpp5MlNTE+zqg
0=
elliptic@^6.5.3:
version "6.5.4"
...
...
@@ -4687,21 +4716,22 @@ error-stack-parser@^2.0.6:
stackframe "^1.1.1"
es-abstract@^1.17.2, es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2, es-abstract@^1.18.2:
version "1.18.
5
"
resolved "http://npm.dui88.com:80/es-abstract/-/es-abstract-1.18.
5.tgz#9b10de7d4c206a3581fd5b2124233e04db49ae19
"
integrity sha1-
mxDefUwgajWB/VshJCM+BNtJrhk
=
version "1.18.
6
"
resolved "http://npm.dui88.com:80/es-abstract/-/es-abstract-1.18.
6.tgz#2c44e3ea7a6255039164d26559777a6d978cb456
"
integrity sha1-
LETj6npiVQORZNJlWXd6bZeMtFY
=
dependencies:
call-bind "^1.0.2"
es-to-primitive "^1.2.1"
function-bind "^1.1.1"
get-intrinsic "^1.1.1"
get-symbol-description "^1.0.0"
has "^1.0.3"
has-symbols "^1.0.2"
internal-slot "^1.0.3"
is-callable "^1.2.
3
"
is-callable "^1.2.
4
"
is-negative-zero "^2.0.1"
is-regex "^1.1.
3
"
is-string "^1.0.
6
"
is-regex "^1.1.
4
"
is-string "^1.0.
7
"
object-inspect "^1.11.0"
object-keys "^1.1.1"
object.assign "^4.1.2"
...
...
@@ -4788,7 +4818,7 @@ eslint-config-react-app@^6.0.0:
dependencies:
confusing-browser-globals "^1.0.10"
eslint-import-resolver-node@^0.3.
5
:
eslint-import-resolver-node@^0.3.
6
:
version "0.3.6"
resolved "http://npm.dui88.com:80/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd"
integrity sha1-QEi5WDldqJZoJSAB29nsprg7rL0=
...
...
@@ -4805,33 +4835,33 @@ eslint-module-utils@^2.6.2:
pkg-dir "^2.0.0"
eslint-plugin-flowtype@^5.2.0:
version "5.9.
0
"
resolved "http://npm.dui88.com:80/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.9.
0.tgz#8d2d81d3d79bb53470ed62b97409b31684757e30
"
integrity sha1-
jS2B09ebtTRw7WK5dAmzFoR1fjA
=
version "5.9.
2
"
resolved "http://npm.dui88.com:80/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.9.
2.tgz#aac08cd26ee4da79cba0e40c3877bb4d96a74ebc
"
integrity sha1-
qsCM0m7k2nnLoOQMOHe7TZanTrw
=
dependencies:
lodash "^4.17.15"
string-natural-compare "^3.0.1"
eslint-plugin-import@^2.22.1:
version "2.24.
0
"
resolved "http://npm.dui88.com:80/eslint-plugin-import/-/eslint-plugin-import-2.24.
0.tgz#697ffd263e24da5e84e03b282f5fb62251777177
"
integrity sha1-
aX/9Jj4k2l6E4DsoL1+2IlF3cXc
=
version "2.24.
2
"
resolved "http://npm.dui88.com:80/eslint-plugin-import/-/eslint-plugin-import-2.24.
2.tgz#2c8cd2e341f3885918ee27d18479910ade7bb4da
"
integrity sha1-
LIzS40HziFkY7ifRhHmRCt57tNo
=
dependencies:
array-includes "^3.1.3"
array.prototype.flat "^1.2.4"
debug "^2.6.9"
doctrine "^2.1.0"
eslint-import-resolver-node "^0.3.
5
"
eslint-import-resolver-node "^0.3.
6
"
eslint-module-utils "^2.6.2"
find-up "^2.0.0"
has "^1.0.3"
is-core-module "^2.
4
.0"
is-core-module "^2.
6
.0"
minimatch "^3.0.4"
object.values "^1.1.
3
"
object.values "^1.1.
4
"
pkg-up "^2.0.0"
read-pkg-up "^3.0.0"
resolve "^1.20.0"
tsconfig-paths "^3.
9
.0"
tsconfig-paths "^3.
11
.0"
eslint-plugin-jest@^24.1.0:
version "24.4.0"
...
...
@@ -4863,13 +4893,14 @@ eslint-plugin-react-hooks@^4.2.0:
integrity sha1-jCKcJo1GiVYzTJQ7tF/IYCgPVVY=
eslint-plugin-react@^7.21.5:
version "7.2
4.0
"
resolved "http://npm.dui88.com:80/eslint-plugin-react/-/eslint-plugin-react-7.2
4.0.tgz#eadedfa351a6f36b490aa17f4fa9b14e842b9eb4
"
integrity sha1-
6t7fo1Gm82tJCqF/T6mxToQrnrQ
=
version "7.2
5.1
"
resolved "http://npm.dui88.com:80/eslint-plugin-react/-/eslint-plugin-react-7.2
5.1.tgz#9286b7cd9bf917d40309760f403e53016eda8331
"
integrity sha1-
koa3zZv5F9QDCXYPQD5TAW7agzE
=
dependencies:
array-includes "^3.1.3"
array.prototype.flatmap "^1.2.4"
doctrine "^2.1.0"
estraverse "^5.2.0"
has "^1.0.3"
jsx-ast-utils "^2.4.1 || ^3.0.0"
minimatch "^3.0.4"
...
...
@@ -5168,11 +5199,11 @@ express@^4.17.1:
vary "~1.1.2"
ext@^1.1.2:
version "1.
4
.0"
resolved "http://npm.dui88.com:80/ext/-/ext-1.
4.0.tgz#89ae7a07158f79d35517882904324077e4379244
"
integrity sha1-
ia56BxWPedNVF4gpBDJAd+Q3kkQ
=
version "1.
5
.0"
resolved "http://npm.dui88.com:80/ext/-/ext-1.
5.0.tgz#e93b97ae0cb23f8370380f6107d2d2b7887687ad
"
integrity sha1-
6TuXrgyyP4NwOA9hB9LSt4h2h60
=
dependencies:
type "^2.
0
.0"
type "^2.
5
.0"
extend-shallow@^2.0.1:
version "2.0.1"
...
...
@@ -5245,9 +5276,9 @@ fast-levenshtein@^2.0.6, fast-levenshtein@~2.0.6:
integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=
fastq@^1.6.0:
version "1.1
1.1
"
resolved "http://npm.dui88.com:80/fastq/-/fastq-1.1
1.1.tgz#5d8175aae17db61947f8b162cfc7f63264d22807
"
integrity sha1-
XYF1quF9thlH+LFiz8f2MmTSKAc
=
version "1.1
3.0
"
resolved "http://npm.dui88.com:80/fastq/-/fastq-1.1
3.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c
"
integrity sha1-
YWdg+Ip1Jr38WWt8q4wYk4w2uYw
=
dependencies:
reusify "^1.0.4"
...
...
@@ -5335,9 +5366,9 @@ find-cache-dir@^2.1.0:
pkg-dir "^3.0.0"
find-cache-dir@^3.3.1:
version "3.3.
1
"
resolved "http://npm.dui88.com:80/find-cache-dir/-/find-cache-dir-3.3.
1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880
"
integrity sha1-
ibM/rUpGcNqpT4Vff74x1thP6IA
=
version "3.3.
2
"
resolved "http://npm.dui88.com:80/find-cache-dir/-/find-cache-dir-3.3.
2.tgz#b30c5b6eff0730731aea9bbd9dbecbd80256d64b
"
integrity sha1-
swxbbv8HMHMa6pu9nb7L2AJW1ks
=
dependencies:
commondir "^1.0.1"
make-dir "^3.0.2"
...
...
@@ -5400,9 +5431,9 @@ flush-write-stream@^1.0.0:
readable-stream "^2.3.6"
follow-redirects@^1.0.0:
version "1.14.
2
"
resolved "http://npm.dui88.com:80/follow-redirects/-/follow-redirects-1.14.
2.tgz#cecb825047c00f5e66b142f90fed4f515dec789b
"
integrity sha1-
zsuCUEfAD15msUL5D+1PUV3seJs
=
version "1.14.
3
"
resolved "http://npm.dui88.com:80/follow-redirects/-/follow-redirects-1.14.
3.tgz#6ada78118d8d24caee595595accdc0ac6abd022e
"
integrity sha1-
atp4EY2NJMruWVWVrM3ArGq9Ai4
=
for-in@^1.0.2:
version "1.0.2"
...
...
@@ -5622,6 +5653,14 @@ get-stream@^5.0.0:
dependencies:
pump "^3.0.0"
get-symbol-description@^1.0.0:
version "1.0.0"
resolved "http://npm.dui88.com:80/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
integrity sha1-f9uByQAQH71WTdXxowr1qtweWNY=
dependencies:
call-bind "^1.0.2"
get-intrinsic "^1.1.1"
get-value@^2.0.3, get-value@^2.0.6:
version "2.0.6"
resolved "http://npm.dui88.com:80/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
...
...
@@ -6348,7 +6387,7 @@ is-buffer@^1.1.5:
resolved "http://npm.dui88.com:80/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
integrity sha1-76ouqdqg16suoTqXsritUf776L4=
is-callable@^1.1.4, is-callable@^1.2.
3
:
is-callable@^1.1.4, is-callable@^1.2.
4
:
version "1.2.4"
resolved "http://npm.dui88.com:80/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945"
integrity sha1-RzAdWN0CWUB4ZVR4U99tYf5HGUU=
...
...
@@ -6372,7 +6411,7 @@ is-color-stop@^1.0.0:
rgb-regex "^1.0.1"
rgba-regex "^1.0.0"
is-core-module@^2.0.0, is-core-module@^2.2.0, is-core-module@^2.
4
.0:
is-core-module@^2.0.0, is-core-module@^2.2.0, is-core-module@^2.
6
.0:
version "2.6.0"
resolved "http://npm.dui88.com:80/is-core-module/-/is-core-module-2.6.0.tgz#d7553b2526fe59b92ba3e40c8df757ec8a709e19"
integrity sha1-11U7JSb+Wbkro+QMjfdX7Ipwnhk=
...
...
@@ -6561,7 +6600,7 @@ is-potential-custom-element-name@^1.0.1:
resolved "http://npm.dui88.com:80/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5"
integrity sha1-Fx7W8Z46xVQ5Tt94yqBXhKRb67U=
is-regex@^1.0.4, is-regex@^1.1.
3
:
is-regex@^1.0.4, is-regex@^1.1.
4
:
version "1.1.4"
resolved "http://npm.dui88.com:80/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
integrity sha1-7vVmPNWfpMCuM5UFMj32hUuxWVg=
...
...
@@ -6594,7 +6633,7 @@ is-stream@^2.0.0:
resolved "http://npm.dui88.com:80/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077"
integrity sha1-+sHj1TuXrVqdCunO8jifWBClwHc=
is-string@^1.0.5, is-string@^1.0.
6
:
is-string@^1.0.5, is-string@^1.0.
7
:
version "1.0.7"
resolved "http://npm.dui88.com:80/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
integrity sha1-DdEr8gBvJVu1j2lREO/3SR7rwP0=
...
...
@@ -6798,14 +6837,14 @@ jest-diff@^26.6.2:
pretty-format "^26.6.2"
jest-diff@^27.0.0:
version "27.
0.6
"
resolved "http://npm.dui88.com:80/jest-diff/-/jest-diff-27.
0.6.tgz#4a7a19ee6f04ad70e0e3388f35829394a44c7b5e
"
integrity sha1-
SnoZ7m8ErXDg4ziPNYKTlKRMe14
=
version "27.
2.0
"
resolved "http://npm.dui88.com:80/jest-diff/-/jest-diff-27.
2.0.tgz#bda761c360f751bab1e7a2fe2fc2b0a35ce8518c
"
integrity sha1-
vadhw2D3Ubqx56L+L8Kwo1zoUYw
=
dependencies:
chalk "^4.0.0"
diff-sequences "^27.0.6"
jest-get-type "^27.0.6"
pretty-format "^27.
0.6
"
pretty-format "^27.
2.0
"
jest-docblock@^26.0.0:
version "26.0.0"
...
...
@@ -7278,7 +7317,7 @@ json5@^1.0.1:
dependencies:
minimist "^1.2.0"
json5@^2.1.2
, json5@^2.2.0
:
json5@^2.1.2:
version "2.2.0"
resolved "http://npm.dui88.com:80/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3"
integrity sha1-Lf7+cgxrpSXZ69kJlQ8FFTFsiaM=
...
...
@@ -8310,7 +8349,7 @@ object.pick@^1.3.0:
dependencies:
isobject "^3.0.1"
object.values@^1.1.0, object.values@^1.1.
3, object.values@^1.1.
4:
object.values@^1.1.0, object.values@^1.1.4:
version "1.1.4"
resolved "http://npm.dui88.com:80/object.values/-/object.values-1.1.4.tgz#0d273762833e816b693a637d30073e7051535b30"
integrity sha1-DSc3YoM+gWtpOmN9MAc+cFFTWzA=
...
...
@@ -9488,12 +9527,12 @@ pretty-format@^26.6.0, pretty-format@^26.6.2:
ansi-styles "^4.0.0"
react-is "^17.0.1"
pretty-format@^27.0.0, pretty-format@^27.
0.6
:
version "27.
0.6
"
resolved "http://npm.dui88.com:80/pretty-format/-/pretty-format-27.
0.6.tgz#ab770c47b2c6f893a21aefc57b75da63ef49a11f
"
integrity sha1-
q3cMR7LG+JOiGu/Fe3XaY+9JoR8
=
pretty-format@^27.0.0, pretty-format@^27.
2.0
:
version "27.
2.0
"
resolved "http://npm.dui88.com:80/pretty-format/-/pretty-format-27.
2.0.tgz#ee37a94ce2a79765791a8649ae374d468c18ef19
"
integrity sha1-
7jepTOKnl2V5GoZJrjdNRowY7xk
=
dependencies:
"@jest/types" "^27.
0.6
"
"@jest/types" "^27.
1.1
"
ansi-regex "^5.0.0"
ansi-styles "^5.0.0"
react-is "^17.0.1"
...
...
@@ -9742,9 +9781,9 @@ rc-checkbox@~2.3.0:
classnames "^2.2.1"
rc-collapse@~3.1.0:
version "3.1.
1
"
resolved "http://npm.dui88.com:80/rc-collapse/-/rc-collapse-3.1.
1.tgz#2421d454e85781d1cf2f04f906918e0677d779e6
"
integrity sha1-
JCHUVOhXgdHPLwT5BpGOBnfXeeY
=
version "3.1.
2
"
resolved "http://npm.dui88.com:80/rc-collapse/-/rc-collapse-3.1.
2.tgz#76028a811b845d03d9460ccc409c7ea8ad09db14
"
integrity sha1-
dgKKgRuEXQPZRgzMQJx+qK0J2xQ
=
dependencies:
"@babel/runtime" "^7.10.1"
classnames "2.x"
...
...
@@ -9871,9 +9910,9 @@ rc-pagination@~3.1.9:
classnames "^2.2.1"
rc-picker@~2.5.10:
version "2.5.1
5
"
resolved "http://npm.dui88.com:80/rc-picker/-/rc-picker-2.5.1
5.tgz#7270c11815ca4be2ad931a9d9120099fc1820ab7
"
integrity sha1-
cnDBGBXKS+KtkxqdkSAJn8GCCrc
=
version "2.5.1
8
"
resolved "http://npm.dui88.com:80/rc-picker/-/rc-picker-2.5.1
8.tgz#f84859815ef3f874ade689714a41151e709292c3
"
integrity sha1-
+EhZgV7z+HSt5olxSkEVHnCSksM
=
dependencies:
"@babel/runtime" "^7.10.1"
classnames "^2.2.1"
...
...
@@ -9902,9 +9941,9 @@ rc-rate@~2.9.0:
rc-util "^5.0.1"
rc-resize-observer@^1.0.0:
version "1.0.
0
"
resolved "http://npm.dui88.com:80/rc-resize-observer/-/rc-resize-observer-1.0.
0.tgz#97fb89856f62fec32ab6e40933935cf58e2e102
d"
integrity sha1-
l/uJhW9i/sMqtuQJM5Nc9Y4uEC
0=
version "1.0.
1
"
resolved "http://npm.dui88.com:80/rc-resize-observer/-/rc-resize-observer-1.0.
1.tgz#ccd0986543ff1bf49f8a581e8ac4bb714ed24dc
d"
integrity sha1-
zNCYZUP/G/SfilgeisS7cU7STc
0=
dependencies:
"@babel/runtime" "^7.10.1"
classnames "^2.2.1"
...
...
@@ -10046,9 +10085,9 @@ rc-util@^5.0.0, rc-util@^5.0.1, rc-util@^5.0.5, rc-util@^5.0.6, rc-util@^5.0.7,
shallowequal "^1.1.0"
rc-virtual-list@^3.0.1, rc-virtual-list@^3.2.0:
version "3.
3.0
"
resolved "http://npm.dui88.com:80/rc-virtual-list/-/rc-virtual-list-3.
3.0.tgz#2f95a6ddbbf63d78b28662b57f1e69f7472762fe
"
integrity sha1-
L5Wm3bv2PXiyhmK1fx5p90cnYv4
=
version "3.
4.1
"
resolved "http://npm.dui88.com:80/rc-virtual-list/-/rc-virtual-list-3.
4.1.tgz#1f3b41391acf033a6c7e84c2f4e8a4ee0dc72807
"
integrity sha1-
HztBORrPAzpsfoTC9Oik7g3HKAc
=
dependencies:
classnames "^2.2.6"
rc-resize-observer "^1.0.0"
...
...
@@ -10106,11 +10145,11 @@ react-dom@^17.0.2:
scheduler "^0.20.2"
react-draggable@^4.0.0, react-draggable@^4.0.3:
version "4.4.
3
"
resolved "http://npm.dui88.com:80/react-draggable/-/react-draggable-4.4.
3.tgz#0727f2cae5813e36b0e4962bf11b2f9ef2b406f3
"
integrity sha1-
ByfyyuWBPjaw5JYr8RsvnvK0BvM
=
version "4.4.
4
"
resolved "http://npm.dui88.com:80/react-draggable/-/react-draggable-4.4.
4.tgz#5b26d9996be63d32d285a426f41055de87e59b2f
"
integrity sha1-
WybZmWvmPTLShaQm9BBV3oflmy8
=
dependencies:
cl
assnames "^2.2.5
"
cl
sx "^1.1.1
"
prop-types "^15.6.0"
react-error-overlay@^6.0.9:
...
...
@@ -10119,15 +10158,15 @@ react-error-overlay@^6.0.9:
integrity sha1-PHQwEMk1lgjDdezWvHbzXZOZWwo=
react-grid-layout@^1.2.5:
version "1.
2.5
"
resolved "http://npm.dui88.com:80/react-grid-layout/-/react-grid-layout-1.
2.5.tgz#fa40288d5a1fa783484c44ce78b1e10eb5313d26
"
integrity sha1-
+kAojVofp4NITETOeLHhDrUxPSY
=
version "1.
3.0
"
resolved "http://npm.dui88.com:80/react-grid-layout/-/react-grid-layout-1.
3.0.tgz#ca8a3e13e62ee2162fa658b1eec4b8eec0203dbd
"
integrity sha1-
yoo+E+Yu4hYvplix7sS47sAgPb0
=
dependencies:
classnames "2.3.1"
lodash.isequal "^4.0.0"
prop-types "^15.0.0"
react-draggable "^4.0.0"
react-resizable "^3.0.
1
"
react-resizable "^3.0.
4
"
react-is@^16.12.0, react-is@^16.6.0, react-is@^16.7.0, react-is@^16.8.1:
version "16.13.1"
...
...
@@ -10144,7 +10183,7 @@ react-refresh@^0.8.3:
resolved "http://npm.dui88.com:80/react-refresh/-/react-refresh-0.8.3.tgz#721d4657672d400c5e3c75d063c4a85fb2d5d68f"
integrity sha1-ch1GV2ctQAxePHXQY8SoX7LV1o8=
react-resizable@^3.0.
1
:
react-resizable@^3.0.
4
:
version "3.0.4"
resolved "http://npm.dui88.com:80/react-resizable/-/react-resizable-3.0.4.tgz#aa20108eff28c52c6fddaa49abfbef8abf5e581b"
integrity sha1-qiAQjv8oxSxv3apJq/vvir9eWBs=
...
...
@@ -10153,9 +10192,9 @@ react-resizable@^3.0.1:
react-draggable "^4.0.3"
react-router-dom@^5.2.1:
version "5.
2.1
"
resolved "http://npm.dui88.com:80/react-router-dom/-/react-router-dom-5.
2.1.tgz#34af8b551a4ce17487d3f80e651b91651978dff6
"
integrity sha1-
NK+LVRpM4XSH0/gOZRuRZRl43/Y
=
version "5.
3.0
"
resolved "http://npm.dui88.com:80/react-router-dom/-/react-router-dom-5.
3.0.tgz#da1bfb535a0e89a712a93b97dd76f47ad1f32363
"
integrity sha1-
2hv7U1oOiacSqTuX3Xb0etHzI2M
=
dependencies:
"@babel/runtime" "^7.12.13"
history "^4.9.0"
...
...
@@ -11103,16 +11142,16 @@ snapdragon@^0.8.1:
use "^3.1.0"
sockjs-client@^1.5.0:
version "1.5.
1
"
resolved "http://npm.dui88.com:80/sockjs-client/-/sockjs-client-1.5.
1.tgz#256908f6d5adfb94dabbdbd02c66362cca0f9ea6
"
integrity sha1-
JWkI9tWt+5Tau9vQLGY2LMoPnqY
=
version "1.5.
2
"
resolved "http://npm.dui88.com:80/sockjs-client/-/sockjs-client-1.5.
2.tgz#4bc48c2da9ce4769f19dc723396b50f5c12330a3
"
integrity sha1-
S8SMLanOR2nxnccjOWtQ9cEjMKM
=
dependencies:
debug "^3.2.6"
eventsource "^1.0.7"
faye-websocket "^0.11.3"
inherits "^2.0.4"
json3 "^3.3.3"
url-parse "^1.5.
1
"
url-parse "^1.5.
3
"
sockjs@^0.3.21:
version "0.3.21"
...
...
@@ -11159,10 +11198,10 @@ source-map-resolve@^0.6.0:
atob "^2.1.2"
decode-uri-component "^0.2.0"
source-map-support@^0.5.6, source-map-support@~0.5.12, source-map-support@~0.5.
19
:
version "0.5.
19
"
resolved "http://npm.dui88.com:80/source-map-support/-/source-map-support-0.5.
19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61
"
integrity sha1-
qYti+G3K9PZzmWSMCFKRq56P7WE
=
source-map-support@^0.5.6, source-map-support@~0.5.12, source-map-support@~0.5.
20
:
version "0.5.
20
"
resolved "http://npm.dui88.com:80/source-map-support/-/source-map-support-0.5.
20.tgz#12166089f8f5e5e8c56926b377633392dd2cb6c9
"
integrity sha1-
EhZgifj15ejFaSazd2Mzkt0stsk
=
dependencies:
buffer-from "^1.0.0"
source-map "^0.6.0"
...
...
@@ -11658,9 +11697,9 @@ tar@^2.0.0:
inherits "2"
tar@^6.0.2:
version "6.1.1
0
"
resolved "http://npm.dui88.com:80/tar/-/tar-6.1.1
0.tgz#8a320a74475fba54398fa136cd9883aa8ad11175
"
integrity sha1-
ijIKdEdfulQ5j6E2zZiDqorREXU
=
version "6.1.1
1
"
resolved "http://npm.dui88.com:80/tar/-/tar-6.1.1
1.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621
"
integrity sha1-
Z2CjjwA6+hsv/Q/+npq70Oqz1iE
=
dependencies:
chownr "^2.0.0"
fs-minipass "^2.0.0"
...
...
@@ -11731,13 +11770,13 @@ terser@^4.1.2, terser@^4.6.2, terser@^4.6.3:
source-map-support "~0.5.12"
terser@^5.3.4:
version "5.
7.1
"
resolved "http://npm.dui88.com:80/terser/-/terser-5.
7.1.tgz#2dc7a61009b66bb638305cb2a824763b116bf784
"
integrity sha1-
LcemEAm2a7Y4MFyyqCR2OxFr94Q
=
version "5.
8.0
"
resolved "http://npm.dui88.com:80/terser/-/terser-5.
8.0.tgz#c6d352f91aed85cc6171ccb5e84655b77521d947
"
integrity sha1-
xtNS+Rrthcxhccy16EZVt3Uh2Uc
=
dependencies:
commander "^2.20.0"
source-map "~0.7.2"
source-map-support "~0.5.
19
"
source-map-support "~0.5.
20
"
test-exclude@^6.0.0:
version "6.0.0"
...
...
@@ -11794,9 +11833,9 @@ tiny-warning@^1.0.0, tiny-warning@^1.0.3:
integrity sha1-lKMNtFPfTGQ9D9VmBg1gqHXYR1Q=
tmpl@1.0.x:
version "1.0.
4
"
resolved "http://npm.dui88.com:80/tmpl/-/tmpl-1.0.
4.tgz#23640dd7b42d00433911140820e5cf440e521dd1
"
integrity sha1-
I2QN17QtAEM5ERQIIOXPRA5SHdE
=
version "1.0.
5
"
resolved "http://npm.dui88.com:80/tmpl/-/tmpl-1.0.
5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc
"
integrity sha1-
hoPguQK7nCDE9ybjwLafNlGMB8w
=
to-arraybuffer@^1.0.0:
version "1.0.1"
...
...
@@ -11896,12 +11935,13 @@ ts-pnp@1.2.0, ts-pnp@^1.1.6:
resolved "http://npm.dui88.com:80/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92"
integrity sha1-pQCtCEsHmPHDBxrzkeZZEshrypI=
tsconfig-paths@^3.
9
.0:
version "3.1
0.1
"
resolved "http://npm.dui88.com:80/tsconfig-paths/-/tsconfig-paths-3.1
0.1.tgz#79ae67a68c15289fdf5c51cb74f397522d795ed7
"
integrity sha1-
ea5npowVKJ/fXFHLdPOXUi15Xtc
=
tsconfig-paths@^3.
11
.0:
version "3.1
1.0
"
resolved "http://npm.dui88.com:80/tsconfig-paths/-/tsconfig-paths-3.1
1.0.tgz#954c1fe973da6339c78e06b03ce2e48810b65f36
"
integrity sha1-
lUwf6XPaYznHjgawPOLkiBC2XzY
=
dependencies:
json5 "^2.2.0"
"@types/json5" "^0.0.29"
json5 "^1.0.1"
minimist "^1.2.0"
strip-bom "^3.0.0"
...
...
@@ -11996,7 +12036,7 @@ type@^1.0.1:
resolved "http://npm.dui88.com:80/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0"
integrity sha1-hI3XaY2vo+VKbEeedZxLw/GIR6A=
type@^2.
0
.0:
type@^2.
5
.0:
version "2.5.0"
resolved "http://npm.dui88.com:80/type/-/type-2.5.0.tgz#0a2e78c2e77907b252abe5f298c1b01c63f0db3d"
integrity sha1-Ci54wud5B7JSq+XymMGwHGPw2z0=
...
...
@@ -12014,9 +12054,9 @@ typedarray@^0.0.6:
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
typescript@^4.4.2:
version "4.4.
2
"
resolved "http://npm.dui88.com:80/typescript/-/typescript-4.4.
2.tgz#6d618640d430e3569a1dfb44f7d7e600ced3ee86
"
integrity sha1-
bWGGQNQw41aaHftE99fmAM7T7oY
=
version "4.4.
3
"
resolved "http://npm.dui88.com:80/typescript/-/typescript-4.4.
3.tgz#bdc5407caa2b109efd4f82fe130656f977a29324
"
integrity sha1-
vcVAfKorEJ79T4L+EwZW+XeikyQ
=
unbox-primitive@^1.0.1:
version "1.0.1"
...
...
@@ -12146,7 +12186,7 @@ url-loader@4.1.1:
mime-types "^2.1.27"
schema-utils "^3.0.0"
url-parse@^1.4.3, url-parse@^1.5.
1
:
url-parse@^1.4.3, url-parse@^1.5.
3
:
version "1.5.3"
resolved "http://npm.dui88.com:80/url-parse/-/url-parse-1.5.3.tgz#71c1303d38fb6639ade183c2992c8cc0686df862"
integrity sha1-ccEwPTj7Zjmt4YPCmSyMwGht+GI=
...
...
@@ -12738,9 +12778,9 @@ ws@^6.2.1:
async-limiter "~1.0.0"
ws@^7.4.6:
version "7.5.
3
"
resolved "http://npm.dui88.com:80/ws/-/ws-7.5.
3.tgz#160835b63c7d97bfab418fc1b8a9fced2ac01a74
"
integrity sha1-
Fgg1tjx9l7+rQY/BuKn87SrAGnQ
=
version "7.5.
5
"
resolved "http://npm.dui88.com:80/ws/-/ws-7.5.
5.tgz#8b4bc4af518cfabd0473ae4f99144287b33eb881
"
integrity sha1-
i0vEr1GM+r0Ec65PmRRCh7M+uIE
=
xml-name-validator@^3.0.0:
version "3.0.0"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment