Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
马贞晓
/
templateReact
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 2f67b89d
authored
Nov 11, 2019
by
马贞晓
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
按需引入
1 parent
c92e0f99
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
953 additions
and
87 deletions
config/webpack.config.js
package.json
src/App.css
src/App.js
src/App.less
yarn.lock
config/webpack.config.js
View file @
2f67b89
...
@@ -49,6 +49,8 @@ const cssRegex = /\.css$/;
...
@@ -49,6 +49,8 @@ const cssRegex = /\.css$/;
const
cssModuleRegex
=
/
\.
module
\.
css$/
;
const
cssModuleRegex
=
/
\.
module
\.
css$/
;
const
sassRegex
=
/
\.(
scss|sass
)
$/
;
const
sassRegex
=
/
\.(
scss|sass
)
$/
;
const
sassModuleRegex
=
/
\.
module
\.(
scss|sass
)
$/
;
const
sassModuleRegex
=
/
\.
module
\.(
scss|sass
)
$/
;
const
lessRegex
=
/
\.(
less
)
$/
;
const
lessModuleRegex
=
/
\.
module
\.(
less
)
$/
;
// This is the production and development configuration.
// This is the production and development configuration.
// It is focused on developer experience, fast rebuilds, and a minimal bundle.
// It is focused on developer experience, fast rebuilds, and a minimal bundle.
...
@@ -394,6 +396,11 @@ module.exports = function(webpackEnv) {
...
@@ -394,6 +396,11 @@ module.exports = function(webpackEnv) {
},
},
},
},
],
],
[
"import"
,
{
"libraryName"
:
"antd"
,
"libraryDirectory"
:
"es"
,
"style"
:
"css"
// `style: true` 会加载 less 文件
}]
],
],
// This is a feature of `babel-loader` for webpack (not Babel itself).
// This is a feature of `babel-loader` for webpack (not Babel itself).
// It enables caching results in ./node_modules/.cache/babel-loader/
// It enables caching results in ./node_modules/.cache/babel-loader/
...
@@ -495,6 +502,34 @@ module.exports = function(webpackEnv) {
...
@@ -495,6 +502,34 @@ module.exports = function(webpackEnv) {
'sass-loader'
'sass-loader'
),
),
},
},
{
test
:
lessRegex
,
exclude
:
lessModuleRegex
,
use
:
getStyleLoaders
(
{
importLoaders
:
2
,
sourceMap
:
isEnvProduction
&&
shouldUseSourceMap
,
},
'less-loader'
),
// Don't consider CSS imports dead code even if the
// containing package claims to have no side effects.
// Remove this when webpack adds a warning or an error for this.
// See https://github.com/webpack/webpack/issues/6571
sideEffects
:
true
,
},
{
test
:
lessModuleRegex
,
use
:
getStyleLoaders
(
{
importLoaders
:
2
,
sourceMap
:
isEnvProduction
&&
shouldUseSourceMap
,
modules
:
true
,
getLocalIdent
:
getCSSModuleLocalIdent
,
},
'less-loader'
),
},
// "file" loader makes sure those assets get served by WebpackDevServer.
// "file" loader makes sure those assets get served by WebpackDevServer.
// When you `import` an asset, you get its (virtual) filename.
// When you `import` an asset, you get its (virtual) filename.
// In production, they would get copied to the `build` folder.
// In production, they would get copied to the `build` folder.
...
...
package.json
View file @
2f67b89
...
@@ -3,15 +3,68 @@
...
@@ -3,15 +3,68 @@
"version"
:
"0.1.0"
,
"version"
:
"0.1.0"
,
"private"
:
true
,
"private"
:
true
,
"dependencies"
:
{
"dependencies"
:
{
"@babel/core"
:
"7.6.0"
,
"@svgr/webpack"
:
"4.3.2"
,
"@typescript-eslint/eslint-plugin"
:
"^2.2.0"
,
"@typescript-eslint/parser"
:
"^2.2.0"
,
"antd"
:
"^3.25.1"
,
"babel-eslint"
:
"10.0.3"
,
"babel-jest"
:
"^24.9.0"
,
"babel-loader"
:
"8.0.6"
,
"babel-plugin-named-asset-import"
:
"^0.3.4"
,
"babel-preset-react-app"
:
"^9.0.2"
,
"camelcase"
:
"^5.2.0"
,
"case-sensitive-paths-webpack-plugin"
:
"2.2.0"
,
"css-loader"
:
"2.1.1"
,
"dotenv"
:
"6.2.0"
,
"dotenv-expand"
:
"5.1.0"
,
"eslint"
:
"^6.1.0"
,
"eslint-config-react-app"
:
"^5.0.2"
,
"eslint-loader"
:
"3.0.2"
,
"eslint-plugin-flowtype"
:
"3.13.0"
,
"eslint-plugin-import"
:
"2.18.2"
,
"eslint-plugin-jsx-a11y"
:
"6.2.3"
,
"eslint-plugin-react"
:
"7.14.3"
,
"eslint-plugin-react-hooks"
:
"^1.6.1"
,
"file-loader"
:
"3.0.1"
,
"fs-extra"
:
"7.0.1"
,
"html-webpack-plugin"
:
"4.0.0-beta.5"
,
"identity-obj-proxy"
:
"3.0.0"
,
"is-wsl"
:
"^1.1.0"
,
"jest"
:
"24.9.0"
,
"jest-environment-jsdom-fourteen"
:
"0.1.0"
,
"jest-resolve"
:
"24.9.0"
,
"jest-watch-typeahead"
:
"0.4.0"
,
"mini-css-extract-plugin"
:
"0.8.0"
,
"moment"
:
"^2.24.0"
,
"optimize-css-assets-webpack-plugin"
:
"5.0.3"
,
"pnp-webpack-plugin"
:
"1.5.0"
,
"postcss-flexbugs-fixes"
:
"4.1.0"
,
"postcss-loader"
:
"3.0.0"
,
"postcss-normalize"
:
"7.0.1"
,
"postcss-preset-env"
:
"6.7.0"
,
"postcss-safe-parser"
:
"4.0.1"
,
"react"
:
"^16.11.0"
,
"react"
:
"^16.11.0"
,
"react-app-polyfill"
:
"^1.0.4"
,
"react-dev-utils"
:
"^9.1.0"
,
"react-dom"
:
"^16.11.0"
,
"react-dom"
:
"^16.11.0"
,
"react-scripts"
:
"3.2.0"
"resolve"
:
"1.12.0"
,
"resolve-url-loader"
:
"3.1.0"
,
"sass-loader"
:
"7.2.0"
,
"semver"
:
"6.3.0"
,
"style-loader"
:
"1.0.0"
,
"terser-webpack-plugin"
:
"1.4.1"
,
"ts-pnp"
:
"1.1.4"
,
"url-loader"
:
"2.1.0"
,
"webpack"
:
"4.41.0"
,
"webpack-dev-server"
:
"3.2.1"
,
"webpack-manifest-plugin"
:
"2.1.1"
,
"workbox-webpack-plugin"
:
"4.3.1"
},
},
"scripts"
:
{
"scripts"
:
{
"start"
:
"react-scripts start"
,
"start"
:
"node scripts/start.js"
,
"build"
:
"react-scripts build"
,
"build"
:
"node scripts/build.js"
,
"test"
:
"react-scripts test"
,
"test"
:
"node scripts/test.js"
"eject"
:
"react-scripts eject"
},
},
"eslintConfig"
:
{
"eslintConfig"
:
{
"extends"
:
"react-app"
"extends"
:
"react-app"
...
@@ -29,8 +82,62 @@
...
@@ -29,8 +82,62 @@
]
]
},
},
"devDependencies"
:
{
"devDependencies"
:
{
"@babel/helper-create-regexp-features-plugin"
:
"^7.7.2"
,
"babel-plugin-import"
:
"^1.12.2"
,
"babel-plugin-import"
:
"^1.12.2"
,
"less"
:
"^3.10.3"
,
"less"
:
"^3.10.3"
,
"less-loader"
:
"^5.0.0"
"less-loader"
:
"^5.0.0"
},
"jest"
:
{
"roots"
:
[
"<rootDir>/src"
],
"collectCoverageFrom"
:
[
"src/**/*.{js,jsx,ts,tsx}"
,
"!src/**/*.d.ts"
],
"setupFiles"
:
[
"react-app-polyfill/jsdom"
],
"setupFilesAfterEnv"
:
[],
"testMatch"
:
[
"<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}"
,
"<rootDir>/src/**/*.{spec,test}.{js,jsx,ts,tsx}"
],
"testEnvironment"
:
"jest-environment-jsdom-fourteen"
,
"transform"
:
{
"^.+
\\
.(js|jsx|ts|tsx)$"
:
"<rootDir>/node_modules/babel-jest"
,
"^.+
\\
.css$"
:
"<rootDir>/config/jest/cssTransform.js"
,
"^(?!.*
\\
.(js|jsx|ts|tsx|css|json)$)"
:
"<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns"
:
[
"[/
\\\\
]node_modules[/
\\\\
].+
\\
.(js|jsx|ts|tsx)$"
,
"^.+
\\
.module
\\
.(css|sass|scss)$"
],
"modulePaths"
:
[],
"moduleNameMapper"
:
{
"^react-native$"
:
"react-native-web"
,
"^.+
\\
.module
\\
.(css|sass|scss)$"
:
"identity-obj-proxy"
},
"moduleFileExtensions"
:
[
"web.js"
,
"js"
,
"web.ts"
,
"ts"
,
"web.tsx"
,
"tsx"
,
"json"
,
"web.jsx"
,
"jsx"
,
"node"
],
"watchPlugins"
:
[
"jest-watch-typeahead/filename"
,
"jest-watch-typeahead/testname"
]
},
"babel"
:
{
"presets"
:
[
"react-app"
]
}
}
}
}
src/App.css
View file @
2f67b89
.App
{
.App
{
text-align
:
center
;
text-align
:
center
;
}
}
.App
.App-logo
{
.App-logo
{
height
:
40vmin
;
height
:
40vmin
;
}
}
.App
.App-header
{
.App-header
{
background-color
:
#282c34
;
background-color
:
#282c34
;
min-height
:
100vh
;
min-height
:
100vh
;
display
:
flex
;
display
:
flex
;
...
@@ -16,7 +14,6 @@
...
@@ -16,7 +14,6 @@
font-size
:
calc
(
10px
+
2vmin
);
font-size
:
calc
(
10px
+
2vmin
);
color
:
white
;
color
:
white
;
}
}
.App
.App-link
{
.App-link
{
color
:
#09d3ac
;
color
:
#09d3ac
;
}
}
src/App.js
View file @
2f67b89
import
React
from
'react'
;
import
React
from
'react'
;
import
logo
from
'./logo.svg'
;
import
logo
from
'./logo.svg'
;
import
'./App.
c
ss'
;
import
'./App.
le
ss'
;
import
{
Button
}
from
'antd'
;
function
App
()
{
function
App
()
{
return
(
return
(
<
div
className
=
"App"
>
<
div
className
=
"App"
>
<
Button
type
=
"primary"
>
Primary
<
/Button
>
<
header
className
=
"App-header"
>
<
header
className
=
"App-header"
>
<
img
src
=
{
logo
}
className
=
"App-logo"
alt
=
"logo"
/>
<
img
src
=
{
logo
}
className
=
"App-logo"
alt
=
"logo"
/>
<
p
>
<
p
>
...
...
src/App.less
0 → 100644
View file @
2f67b89
.App {
text-align: center;
.App-logo {
height: 40vmin;
}
.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
.App-link {
color: #09d3ac;
}
}
yarn.lock
View file @
2f67b89
...
@@ -2,6 +2,30 @@
...
@@ -2,6 +2,30 @@
# yarn lockfile v1
# yarn lockfile v1
"@ant-design/colors@^3.1.0":
version "3.2.2"
resolved "https://registry.npm.taobao.org/@ant-design/colors/download/@ant-design/colors-3.2.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40ant-design%2Fcolors%2Fdownload%2F%40ant-design%2Fcolors-3.2.2.tgz#5ad43d619e911f3488ebac303d606e66a8423903"
dependencies:
tinycolor2 "^1.4.1"
"@ant-design/create-react-context@^0.2.4":
version "0.2.4"
resolved "https://registry.npm.taobao.org/@ant-design/create-react-context/download/@ant-design/create-react-context-0.2.4.tgz#0fe9adad030350c0c9bb296dd6dcf5a8a36bd425"
dependencies:
gud "^1.0.0"
warning "^4.0.3"
"@ant-design/icons-react@~2.0.1":
version "2.0.1"
resolved "https://registry.npm.taobao.org/@ant-design/icons-react/download/@ant-design/icons-react-2.0.1.tgz#17a2513571ab317aca2927e58cea25dd31e536fb"
dependencies:
"@ant-design/colors" "^3.1.0"
babel-runtime "^6.26.0"
"@ant-design/icons@~2.1.1":
version "2.1.1"
resolved "https://registry.npm.taobao.org/@ant-design/icons/download/@ant-design/icons-2.1.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40ant-design%2Ficons%2Fdownload%2F%40ant-design%2Ficons-2.1.1.tgz#7b9c08dffd4f5d41db667d9dbe5e0107d0bd9a4a"
"@babel/code-frame@7.5.5", "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5":
"@babel/code-frame@7.5.5", "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5":
version "7.5.5"
version "7.5.5"
resolved "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d"
resolved "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d"
...
@@ -94,7 +118,7 @@
...
@@ -94,7 +118,7 @@
"@babel/helper-replace-supers" "^7.7.0"
"@babel/helper-replace-supers" "^7.7.0"
"@babel/helper-split-export-declaration" "^7.7.0"
"@babel/helper-split-export-declaration" "^7.7.0"
"@babel/helper-create-regexp-features-plugin@^7.7.0":
"@babel/helper-create-regexp-features-plugin@^7.7.0"
, "@babel/helper-create-regexp-features-plugin@^7.7.2"
:
version "7.7.2"
version "7.7.2"
resolved "https://registry.npm.taobao.org/@babel/helper-create-regexp-features-plugin/download/@babel/helper-create-regexp-features-plugin-7.7.2.tgz#6f20443778c8fce2af2ff4206284afc0ced65db6"
resolved "https://registry.npm.taobao.org/@babel/helper-create-regexp-features-plugin/download/@babel/helper-create-regexp-features-plugin-7.7.2.tgz#6f20443778c8fce2af2ff4206284afc0ced65db6"
dependencies:
dependencies:
...
@@ -1147,10 +1171,27 @@
...
@@ -1147,10 +1171,27 @@
version "7.0.3"
version "7.0.3"
resolved "https://registry.npm.taobao.org/@types/json-schema/download/@types/json-schema-7.0.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Fjson-schema%2Fdownload%2F%40types%2Fjson-schema-7.0.3.tgz#bdfd69d61e464dcc81b25159c270d75a73c1a636"
resolved "https://registry.npm.taobao.org/@types/json-schema/download/@types/json-schema-7.0.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40types%2Fjson-schema%2Fdownload%2F%40types%2Fjson-schema-7.0.3.tgz#bdfd69d61e464dcc81b25159c270d75a73c1a636"
"@types/prop-types@*":
version "15.7.3"
resolved "https://registry.npm.taobao.org/@types/prop-types/download/@types/prop-types-15.7.3.tgz#2ab0d5da2e5815f94b0b9d4b95d1e5f243ab2ca7"
"@types/q@^1.5.1":
"@types/q@^1.5.1":
version "1.5.2"
version "1.5.2"
resolved "https://registry.npm.taobao.org/@types/q/download/@types/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8"
resolved "https://registry.npm.taobao.org/@types/q/download/@types/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8"
"@types/react-slick@^0.23.4":
version "0.23.4"
resolved "https://registry.npm.taobao.org/@types/react-slick/download/@types/react-slick-0.23.4.tgz#c97e2a9e7e3d1933c68593b8e82752fab1e8ce53"
dependencies:
"@types/react" "*"
"@types/react@*":
version "16.9.11"
resolved "https://registry.npm.taobao.org/@types/react/download/@types/react-16.9.11.tgz#70e0b7ad79058a7842f25ccf2999807076ada120"
dependencies:
"@types/prop-types" "*"
csstype "^2.2.0"
"@types/stack-utils@^1.0.1":
"@types/stack-utils@^1.0.1":
version "1.0.1"
version "1.0.1"
resolved "https://registry.npm.taobao.org/@types/stack-utils/download/@types/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e"
resolved "https://registry.npm.taobao.org/@types/stack-utils/download/@types/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e"
...
@@ -1381,6 +1422,12 @@ acorn@^7.1.0:
...
@@ -1381,6 +1422,12 @@ acorn@^7.1.0:
version "7.1.0"
version "7.1.0"
resolved "https://registry.npm.taobao.org/acorn/download/acorn-7.1.0.tgz?cache=0&sync_timestamp=1569334654641&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Facorn%2Fdownload%2Facorn-7.1.0.tgz#949d36f2c292535da602283586c2477c57eb2d6c"
resolved "https://registry.npm.taobao.org/acorn/download/acorn-7.1.0.tgz?cache=0&sync_timestamp=1569334654641&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Facorn%2Fdownload%2Facorn-7.1.0.tgz#949d36f2c292535da602283586c2477c57eb2d6c"
add-dom-event-listener@^1.1.0:
version "1.1.0"
resolved "https://registry.npm.taobao.org/add-dom-event-listener/download/add-dom-event-listener-1.1.0.tgz#6a92db3a0dd0abc254e095c0f1dc14acbbaae310"
dependencies:
object-assign "4.x"
address@1.1.2, address@^1.0.1:
address@1.1.2, address@^1.0.1:
version "1.1.2"
version "1.1.2"
resolved "https://registry.npm.taobao.org/address/download/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6"
resolved "https://registry.npm.taobao.org/address/download/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6"
...
@@ -1456,6 +1503,64 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1:
...
@@ -1456,6 +1503,64 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1:
dependencies:
dependencies:
color-convert "^1.9.0"
color-convert "^1.9.0"
antd@^3.25.1:
version "3.25.1"
resolved "https://registry.npm.taobao.org/antd/download/antd-3.25.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fantd%2Fdownload%2Fantd-3.25.1.tgz#c23732e63fc01fed30d9ab708e9ef4e71527ed82"
dependencies:
"@ant-design/create-react-context" "^0.2.4"
"@ant-design/icons" "~2.1.1"
"@ant-design/icons-react" "~2.0.1"
"@types/react-slick" "^0.23.4"
array-tree-filter "^2.1.0"
babel-runtime "6.x"
classnames "~2.2.6"
copy-to-clipboard "^3.2.0"
css-animation "^1.5.0"
dom-closest "^0.2.0"
enquire.js "^2.1.6"
lodash "^4.17.13"
moment "^2.24.0"
omit.js "^1.0.2"
prop-types "^15.7.2"
raf "^3.4.1"
rc-animate "^2.10.2"
rc-calendar "~9.15.5"
rc-cascader "~0.17.4"
rc-checkbox "~2.1.6"
rc-collapse "~1.11.3"
rc-dialog "~7.5.2"
rc-drawer "~3.0.0"
rc-dropdown "~2.4.1"
rc-editor-mention "^1.1.13"
rc-form "^2.4.10"
rc-input-number "~4.5.0"
rc-mentions "~0.4.0"
rc-menu "~7.5.1"
rc-notification "~3.3.1"
rc-pagination "~1.20.5"
rc-progress "~2.5.0"
rc-rate "~2.5.0"
rc-resize-observer "^0.1.0"
rc-select "~9.2.0"
rc-slider "~8.7.1"
rc-steps "~3.5.0"
rc-switch "~1.9.0"
rc-table "~6.9.4"
rc-tabs "~9.6.4"
rc-time-picker "~3.7.1"
rc-tooltip "~3.7.3"
rc-tree "~2.1.0"
rc-tree-select "~2.9.1"
rc-trigger "^2.6.2"
rc-upload "~2.9.1"
rc-util "^4.10.0"
react-lazy-load "^3.0.13"
react-lifecycles-compat "^3.0.4"
react-slick "~0.25.2"
resize-observer-polyfill "^1.5.1"
shallowequal "^1.1.0"
warning "~4.0.3"
anymatch@^2.0.0:
anymatch@^2.0.0:
version "2.0.0"
version "2.0.0"
resolved "https://registry.npm.taobao.org/anymatch/download/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
resolved "https://registry.npm.taobao.org/anymatch/download/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
...
@@ -1522,6 +1627,10 @@ array-includes@^3.0.3:
...
@@ -1522,6 +1627,10 @@ array-includes@^3.0.3:
define-properties "^1.1.2"
define-properties "^1.1.2"
es-abstract "^1.7.0"
es-abstract "^1.7.0"
array-tree-filter@^2.1.0:
version "2.1.0"
resolved "https://registry.npm.taobao.org/array-tree-filter/download/array-tree-filter-2.1.0.tgz#873ac00fec83749f255ac8dd083814b4f6329190"
array-union@^1.0.1:
array-union@^1.0.1:
version "1.0.2"
version "1.0.2"
resolved "https://registry.npm.taobao.org/array-union/download/array-union-1.0.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Farray-union%2Fdownload%2Farray-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
resolved "https://registry.npm.taobao.org/array-union/download/array-union-1.0.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Farray-union%2Fdownload%2Farray-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
...
@@ -1595,6 +1704,10 @@ async-limiter@~1.0.0:
...
@@ -1595,6 +1704,10 @@ async-limiter@~1.0.0:
version "1.0.1"
version "1.0.1"
resolved "https://registry.npm.taobao.org/async-limiter/download/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
resolved "https://registry.npm.taobao.org/async-limiter/download/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
async-validator@~1.11.3:
version "1.11.5"
resolved "https://registry.npm.taobao.org/async-validator/download/async-validator-1.11.5.tgz?cache=0&sync_timestamp=1572855091451&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fasync-validator%2Fdownload%2Fasync-validator-1.11.5.tgz#9d43cf49ef6bb76be5442388d19fb9a6e47597ea"
async@^2.6.2:
async@^2.6.2:
version "2.6.3"
version "2.6.3"
resolved "https://registry.npm.taobao.org/async/download/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff"
resolved "https://registry.npm.taobao.org/async/download/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff"
...
@@ -1764,7 +1877,7 @@ babel-preset-react-app@^9.0.2:
...
@@ -1764,7 +1877,7 @@ babel-preset-react-app@^9.0.2:
babel-plugin-macros "2.6.1"
babel-plugin-macros "2.6.1"
babel-plugin-transform-react-remove-prop-types "0.4.24"
babel-plugin-transform-react-remove-prop-types "0.4.24"
babel-runtime@^6.26.0:
babel-runtime@
6.x, babel-runtime@^6.23.0, babel-runtime@
^6.26.0:
version "6.26.0"
version "6.26.0"
resolved "https://registry.npm.taobao.org/babel-runtime/download/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
resolved "https://registry.npm.taobao.org/babel-runtime/download/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
dependencies:
dependencies:
...
@@ -2168,6 +2281,10 @@ class-utils@^0.3.5:
...
@@ -2168,6 +2281,10 @@ class-utils@^0.3.5:
isobject "^3.0.0"
isobject "^3.0.0"
static-extend "^0.1.1"
static-extend "^0.1.1"
classnames@2.x, classnames@^2.2.0, classnames@^2.2.1, classnames@^2.2.3, classnames@^2.2.5, classnames@^2.2.6, classnames@~2.2.6:
version "2.2.6"
resolved "https://registry.npm.taobao.org/classnames/download/classnames-2.2.6.tgz?cache=0&sync_timestamp=1564556269757&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fclassnames%2Fdownload%2Fclassnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce"
clean-css@4.2.x:
clean-css@4.2.x:
version "4.2.1"
version "4.2.1"
resolved "https://registry.npm.taobao.org/clean-css/download/clean-css-4.2.1.tgz#2d411ef76b8569b6d0c84068dabe85b0aa5e5c17"
resolved "https://registry.npm.taobao.org/clean-css/download/clean-css-4.2.1.tgz#2d411ef76b8569b6d0c84068dabe85b0aa5e5c17"
...
@@ -2305,10 +2422,20 @@ commondir@^1.0.1:
...
@@ -2305,10 +2422,20 @@ commondir@^1.0.1:
version "1.0.1"
version "1.0.1"
resolved "https://registry.npm.taobao.org/commondir/download/commondir-1.0.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcommondir%2Fdownload%2Fcommondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
resolved "https://registry.npm.taobao.org/commondir/download/commondir-1.0.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcommondir%2Fdownload%2Fcommondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
component-classes@1.x, component-classes@^1.2.5, component-classes@^1.2.6:
version "1.2.6"
resolved "https://registry.npm.taobao.org/component-classes/download/component-classes-1.2.6.tgz#c642394c3618a4d8b0b8919efccbbd930e5cd691"
dependencies:
component-indexof "0.0.3"
component-emitter@^1.2.1:
component-emitter@^1.2.1:
version "1.3.0"
version "1.3.0"
resolved "https://registry.npm.taobao.org/component-emitter/download/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
resolved "https://registry.npm.taobao.org/component-emitter/download/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
component-indexof@0.0.3:
version "0.0.3"
resolved "https://registry.npm.taobao.org/component-indexof/download/component-indexof-0.0.3.tgz#11d091312239eb8f32c8f25ae9cb002ffe8d3c24"
compose-function@3.0.3:
compose-function@3.0.3:
version "3.0.3"
version "3.0.3"
resolved "https://registry.npm.taobao.org/compose-function/download/compose-function-3.0.3.tgz#9ed675f13cc54501d30950a486ff6a7ba3ab185f"
resolved "https://registry.npm.taobao.org/compose-function/download/compose-function-3.0.3.tgz#9ed675f13cc54501d30950a486ff6a7ba3ab185f"
...
@@ -2419,6 +2546,12 @@ copy-descriptor@^0.1.0:
...
@@ -2419,6 +2546,12 @@ copy-descriptor@^0.1.0:
version "0.1.1"
version "0.1.1"
resolved "https://registry.npm.taobao.org/copy-descriptor/download/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
resolved "https://registry.npm.taobao.org/copy-descriptor/download/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
copy-to-clipboard@^3.2.0:
version "3.2.0"
resolved "https://registry.npm.taobao.org/copy-to-clipboard/download/copy-to-clipboard-3.2.0.tgz#d2724a3ccbfed89706fac8a894872c979ac74467"
dependencies:
toggle-selection "^1.0.6"
core-js-compat@^3.1.1:
core-js-compat@^3.1.1:
version "3.4.0"
version "3.4.0"
resolved "https://registry.npm.taobao.org/core-js-compat/download/core-js-compat-3.4.0.tgz?cache=0&sync_timestamp=1573077778645&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcore-js-compat%2Fdownload%2Fcore-js-compat-3.4.0.tgz#2a47c51d3dc026d290018cacd987495f68a47c75"
resolved "https://registry.npm.taobao.org/core-js-compat/download/core-js-compat-3.4.0.tgz?cache=0&sync_timestamp=1573077778645&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcore-js-compat%2Fdownload%2Fcore-js-compat-3.4.0.tgz#2a47c51d3dc026d290018cacd987495f68a47c75"
...
@@ -2430,6 +2563,10 @@ core-js@3.2.1:
...
@@ -2430,6 +2563,10 @@ core-js@3.2.1:
version "3.2.1"
version "3.2.1"
resolved "https://registry.npm.taobao.org/core-js/download/core-js-3.2.1.tgz?cache=0&sync_timestamp=1573077118193&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcore-js%2Fdownload%2Fcore-js-3.2.1.tgz#cd41f38534da6cc59f7db050fe67307de9868b09"
resolved "https://registry.npm.taobao.org/core-js/download/core-js-3.2.1.tgz?cache=0&sync_timestamp=1573077118193&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcore-js%2Fdownload%2Fcore-js-3.2.1.tgz#cd41f38534da6cc59f7db050fe67307de9868b09"
core-js@^1.0.0:
version "1.2.7"
resolved "https://registry.npm.taobao.org/core-js/download/core-js-1.2.7.tgz?cache=0&sync_timestamp=1573076849507&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcore-js%2Fdownload%2Fcore-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
core-js@^2.4.0:
core-js@^2.4.0:
version "2.6.10"
version "2.6.10"
resolved "https://registry.npm.taobao.org/core-js/download/core-js-2.6.10.tgz?cache=0&sync_timestamp=1573077118193&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcore-js%2Fdownload%2Fcore-js-2.6.10.tgz#8a5b8391f8cc7013da703411ce5b585706300d7f"
resolved "https://registry.npm.taobao.org/core-js/download/core-js-2.6.10.tgz?cache=0&sync_timestamp=1573077118193&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcore-js%2Fdownload%2Fcore-js-2.6.10.tgz#8a5b8391f8cc7013da703411ce5b585706300d7f"
...
@@ -2475,6 +2612,14 @@ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
...
@@ -2475,6 +2612,14 @@ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4:
safe-buffer "^5.0.1"
safe-buffer "^5.0.1"
sha.js "^2.4.8"
sha.js "^2.4.8"
create-react-class@^15.5.3:
version "15.6.3"
resolved "https://registry.npm.taobao.org/create-react-class/download/create-react-class-15.6.3.tgz#2d73237fb3f970ae6ebe011a9e66f46dbca80036"
dependencies:
fbjs "^0.8.9"
loose-envify "^1.3.1"
object-assign "^4.1.1"
cross-spawn@6.0.5, cross-spawn@^6.0.0, cross-spawn@^6.0.5:
cross-spawn@6.0.5, cross-spawn@^6.0.0, cross-spawn@^6.0.5:
version "6.0.5"
version "6.0.5"
resolved "https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-6.0.5.tgz?cache=0&sync_timestamp=1570439926300&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcross-spawn%2Fdownload%2Fcross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
resolved "https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-6.0.5.tgz?cache=0&sync_timestamp=1570439926300&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcross-spawn%2Fdownload%2Fcross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
...
@@ -2501,6 +2646,13 @@ crypto-browserify@^3.11.0:
...
@@ -2501,6 +2646,13 @@ crypto-browserify@^3.11.0:
randombytes "^2.0.0"
randombytes "^2.0.0"
randomfill "^1.0.3"
randomfill "^1.0.3"
css-animation@1.x, css-animation@^1.3.2, css-animation@^1.5.0:
version "1.6.1"
resolved "https://registry.npm.taobao.org/css-animation/download/css-animation-1.6.1.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcss-animation%2Fdownload%2Fcss-animation-1.6.1.tgz#162064a3b0d51f958b7ff37b3d6d4de18e17039e"
dependencies:
babel-runtime "6.x"
component-classes "^1.2.5"
css-blank-pseudo@^0.1.4:
css-blank-pseudo@^0.1.4:
version "0.1.4"
version "0.1.4"
resolved "https://registry.npm.taobao.org/css-blank-pseudo/download/css-blank-pseudo-0.1.4.tgz#dfdefd3254bf8a82027993674ccf35483bfcb3c5"
resolved "https://registry.npm.taobao.org/css-blank-pseudo/download/css-blank-pseudo-0.1.4.tgz#dfdefd3254bf8a82027993674ccf35483bfcb3c5"
...
@@ -2687,6 +2839,10 @@ cssstyle@^1.0.0, cssstyle@^1.1.1:
...
@@ -2687,6 +2839,10 @@ cssstyle@^1.0.0, cssstyle@^1.1.1:
dependencies:
dependencies:
cssom "0.3.x"
cssom "0.3.x"
csstype@^2.2.0:
version "2.6.7"
resolved "https://registry.npm.taobao.org/csstype/download/csstype-2.6.7.tgz?cache=0&sync_timestamp=1570215695802&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcsstype%2Fdownload%2Fcsstype-2.6.7.tgz#20b0024c20b6718f4eda3853a1f5a1cce7f5e4a5"
cyclist@^1.0.1:
cyclist@^1.0.1:
version "1.0.1"
version "1.0.1"
resolved "https://registry.npm.taobao.org/cyclist/download/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9"
resolved "https://registry.npm.taobao.org/cyclist/download/cyclist-1.0.1.tgz#596e9698fd0c80e12038c2b82d6eb1b35b6224d9"
...
@@ -2907,12 +3063,30 @@ doctrine@^3.0.0:
...
@@ -2907,12 +3063,30 @@ doctrine@^3.0.0:
dependencies:
dependencies:
esutils "^2.0.2"
esutils "^2.0.2"
dom-align@^1.7.0:
version "1.10.2"
resolved "https://registry.npm.taobao.org/dom-align/download/dom-align-1.10.2.tgz#540ea1c9e20462bd11b9fc28c561dc8351ece4c6"
dom-closest@^0.2.0:
version "0.2.0"
resolved "https://registry.npm.taobao.org/dom-closest/download/dom-closest-0.2.0.tgz#ebd9f91d1bf22e8d6f477876bbcd3ec90216c0cf"
dependencies:
dom-matches ">=1.0.1"
dom-converter@^0.2:
dom-converter@^0.2:
version "0.2.0"
version "0.2.0"
resolved "https://registry.npm.taobao.org/dom-converter/download/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768"
resolved "https://registry.npm.taobao.org/dom-converter/download/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768"
dependencies:
dependencies:
utila "~0.4"
utila "~0.4"
dom-matches@>=1.0.1:
version "2.0.0"
resolved "https://registry.npm.taobao.org/dom-matches/download/dom-matches-2.0.0.tgz#d2728b416a87533980eb089b848d253cf23a758c"
dom-scroll-into-view@1.x, dom-scroll-into-view@^1.2.0, dom-scroll-into-view@^1.2.1:
version "1.2.1"
resolved "https://registry.npm.taobao.org/dom-scroll-into-view/download/dom-scroll-into-view-1.2.1.tgz#e8f36732dd089b0201a88d7815dc3f88e6d66c7e"
dom-serializer@0:
dom-serializer@0:
version "0.2.2"
version "0.2.2"
resolved "https://registry.npm.taobao.org/dom-serializer/download/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51"
resolved "https://registry.npm.taobao.org/dom-serializer/download/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51"
...
@@ -2972,6 +3146,14 @@ dotenv@6.2.0:
...
@@ -2972,6 +3146,14 @@ dotenv@6.2.0:
version "6.2.0"
version "6.2.0"
resolved "https://registry.npm.taobao.org/dotenv/download/dotenv-6.2.0.tgz#941c0410535d942c8becf28d3f357dbd9d476064"
resolved "https://registry.npm.taobao.org/dotenv/download/dotenv-6.2.0.tgz#941c0410535d942c8becf28d3f357dbd9d476064"
draft-js@^0.10.0, draft-js@~0.10.0:
version "0.10.5"
resolved "https://registry.npm.taobao.org/draft-js/download/draft-js-0.10.5.tgz#bfa9beb018fe0533dbb08d6675c371a6b08fa742"
dependencies:
fbjs "^0.8.15"
immutable "~3.7.4"
object-assign "^4.1.0"
duplexer@^0.1.1:
duplexer@^0.1.1:
version "0.1.1"
version "0.1.1"
resolved "https://registry.npm.taobao.org/duplexer/download/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1"
resolved "https://registry.npm.taobao.org/duplexer/download/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1"
...
@@ -3028,6 +3210,12 @@ encodeurl@~1.0.2:
...
@@ -3028,6 +3210,12 @@ encodeurl@~1.0.2:
version "1.0.2"
version "1.0.2"
resolved "https://registry.npm.taobao.org/encodeurl/download/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
resolved "https://registry.npm.taobao.org/encodeurl/download/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
encoding@^0.1.11:
version "0.1.12"
resolved "https://registry.npm.taobao.org/encoding/download/encoding-0.1.12.tgz#538b66f3ee62cd1ab51ec323829d1f9480c74beb"
dependencies:
iconv-lite "~0.4.13"
end-of-stream@^1.0.0, end-of-stream@^1.1.0:
end-of-stream@^1.0.0, end-of-stream@^1.1.0:
version "1.4.4"
version "1.4.4"
resolved "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz?cache=0&sync_timestamp=1569416272686&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fend-of-stream%2Fdownload%2Fend-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
resolved "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz?cache=0&sync_timestamp=1569416272686&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fend-of-stream%2Fdownload%2Fend-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
...
@@ -3042,6 +3230,10 @@ enhanced-resolve@^4.1.0:
...
@@ -3042,6 +3230,10 @@ enhanced-resolve@^4.1.0:
memory-fs "^0.5.0"
memory-fs "^0.5.0"
tapable "^1.0.0"
tapable "^1.0.0"
enquire.js@^2.1.6:
version "2.1.6"
resolved "https://registry.npm.taobao.org/enquire.js/download/enquire.js-2.1.6.tgz#3e8780c9b8b835084c3f60e166dbc3c2a3c89814"
entities@^1.1.1:
entities@^1.1.1:
version "1.1.2"
version "1.1.2"
resolved "https://registry.npm.taobao.org/entities/download/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56"
resolved "https://registry.npm.taobao.org/entities/download/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56"
...
@@ -3321,6 +3513,10 @@ eventemitter3@^4.0.0:
...
@@ -3321,6 +3513,10 @@ eventemitter3@^4.0.0:
version "4.0.0"
version "4.0.0"
resolved "https://registry.npm.taobao.org/eventemitter3/download/eventemitter3-4.0.0.tgz#d65176163887ee59f386d64c82610b696a4a74eb"
resolved "https://registry.npm.taobao.org/eventemitter3/download/eventemitter3-4.0.0.tgz#d65176163887ee59f386d64c82610b696a4a74eb"
eventlistener@0.0.1:
version "0.0.1"
resolved "https://registry.npm.taobao.org/eventlistener/download/eventlistener-0.0.1.tgz#ed2baabb852227af2bcf889152c72c63ca532eb8"
events@^3.0.0:
events@^3.0.0:
version "3.0.0"
version "3.0.0"
resolved "https://registry.npm.taobao.org/events/download/events-3.0.0.tgz#9a0a0dfaf62893d92b875b8f2698ca4114973e88"
resolved "https://registry.npm.taobao.org/events/download/events-3.0.0.tgz#9a0a0dfaf62893d92b875b8f2698ca4114973e88"
...
@@ -3509,6 +3705,18 @@ fb-watchman@^2.0.0:
...
@@ -3509,6 +3705,18 @@ fb-watchman@^2.0.0:
dependencies:
dependencies:
bser "^2.0.0"
bser "^2.0.0"
fbjs@^0.8.15, fbjs@^0.8.16, fbjs@^0.8.9:
version "0.8.17"
resolved "https://registry.npm.taobao.org/fbjs/download/fbjs-0.8.17.tgz#c4d598ead6949112653d6588b01a5cdcd9f90fdd"
dependencies:
core-js "^1.0.0"
isomorphic-fetch "^2.1.1"
loose-envify "^1.0.0"
object-assign "^4.1.0"
promise "^7.1.1"
setimmediate "^1.0.5"
ua-parser-js "^0.7.18"
figgy-pudding@^3.5.1:
figgy-pudding@^3.5.1:
version "3.5.1"
version "3.5.1"
resolved "https://registry.npm.taobao.org/figgy-pudding/download/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790"
resolved "https://registry.npm.taobao.org/figgy-pudding/download/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790"
...
@@ -3730,10 +3938,6 @@ fs.realpath@^1.0.0:
...
@@ -3730,10 +3938,6 @@ fs.realpath@^1.0.0:
version "1.0.0"
version "1.0.0"
resolved "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
resolved "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
fsevents@2.0.7:
version "2.0.7"
resolved "https://registry.npm.taobao.org/fsevents/download/fsevents-2.0.7.tgz?cache=0&sync_timestamp=1573319474313&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffsevents%2Fdownload%2Ffsevents-2.0.7.tgz#382c9b443c6cbac4c57187cdda23aa3bf1ccfc2a"
fsevents@^1.2.7:
fsevents@^1.2.7:
version "1.2.9"
version "1.2.9"
resolved "https://registry.npm.taobao.org/fsevents/download/fsevents-1.2.9.tgz?cache=0&sync_timestamp=1573319474313&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffsevents%2Fdownload%2Ffsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f"
resolved "https://registry.npm.taobao.org/fsevents/download/fsevents-1.2.9.tgz?cache=0&sync_timestamp=1573319474313&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffsevents%2Fdownload%2Ffsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f"
...
@@ -3866,6 +4070,10 @@ growly@^1.3.0:
...
@@ -3866,6 +4070,10 @@ growly@^1.3.0:
version "1.3.0"
version "1.3.0"
resolved "https://registry.npm.taobao.org/growly/download/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
resolved "https://registry.npm.taobao.org/growly/download/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
gud@^1.0.0:
version "1.0.0"
resolved "https://registry.npm.taobao.org/gud/download/gud-1.0.0.tgz#a489581b17e6a70beca9abe3ae57de7a499852c0"
gzip-size@5.1.1:
gzip-size@5.1.1:
version "5.1.1"
version "5.1.1"
resolved "https://registry.npm.taobao.org/gzip-size/download/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274"
resolved "https://registry.npm.taobao.org/gzip-size/download/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274"
...
@@ -3873,6 +4081,10 @@ gzip-size@5.1.1:
...
@@ -3873,6 +4081,10 @@ gzip-size@5.1.1:
duplexer "^0.1.1"
duplexer "^0.1.1"
pify "^4.0.1"
pify "^4.0.1"
hammerjs@^2.0.8:
version "2.0.8"
resolved "https://registry.npm.taobao.org/hammerjs/download/hammerjs-2.0.8.tgz#04ef77862cff2bb79d30f7692095930222bf60f1"
handle-thing@^2.0.0:
handle-thing@^2.0.0:
version "2.0.0"
version "2.0.0"
resolved "https://registry.npm.taobao.org/handle-thing/download/handle-thing-2.0.0.tgz#0e039695ff50c93fc288557d696f3c1dc6776754"
resolved "https://registry.npm.taobao.org/handle-thing/download/handle-thing-2.0.0.tgz#0e039695ff50c93fc288557d696f3c1dc6776754"
...
@@ -3983,6 +4195,16 @@ hmac-drbg@^1.0.0:
...
@@ -3983,6 +4195,16 @@ hmac-drbg@^1.0.0:
minimalistic-assert "^1.0.0"
minimalistic-assert "^1.0.0"
minimalistic-crypto-utils "^1.0.1"
minimalistic-crypto-utils "^1.0.1"
hoist-non-react-statics@^2.3.1:
version "2.5.5"
resolved "https://registry.npm.taobao.org/hoist-non-react-statics/download/hoist-non-react-statics-2.5.5.tgz#c5903cf409c0dfd908f388e619d86b9c1174cb47"
hoist-non-react-statics@^3.3.0:
version "3.3.0"
resolved "https://registry.npm.taobao.org/hoist-non-react-statics/download/hoist-non-react-statics-3.3.0.tgz#b09178f0122184fb95acf525daaecb4d8f45958b"
dependencies:
react-is "^16.7.0"
hosted-git-info@^2.1.4:
hosted-git-info@^2.1.4:
version "2.8.5"
version "2.8.5"
resolved "https://registry.npm.taobao.org/hosted-git-info/download/hosted-git-info-2.8.5.tgz?cache=0&sync_timestamp=1570493570687&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhosted-git-info%2Fdownload%2Fhosted-git-info-2.8.5.tgz#759cfcf2c4d156ade59b0b2dfabddc42a6b9c70c"
resolved "https://registry.npm.taobao.org/hosted-git-info/download/hosted-git-info-2.8.5.tgz?cache=0&sync_timestamp=1570493570687&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhosted-git-info%2Fdownload%2Fhosted-git-info-2.8.5.tgz#759cfcf2c4d156ade59b0b2dfabddc42a6b9c70c"
...
@@ -4118,7 +4340,7 @@ https-browserify@^1.0.0:
...
@@ -4118,7 +4340,7 @@ https-browserify@^1.0.0:
version "1.0.0"
version "1.0.0"
resolved "https://registry.npm.taobao.org/https-browserify/download/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
resolved "https://registry.npm.taobao.org/https-browserify/download/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@^0.4.4:
iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@^0.4.4
, iconv-lite@~0.4.13
:
version "0.4.24"
version "0.4.24"
resolved "https://registry.npm.taobao.org/iconv-lite/download/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
resolved "https://registry.npm.taobao.org/iconv-lite/download/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
dependencies:
dependencies:
...
@@ -4170,6 +4392,14 @@ immer@1.10.0:
...
@@ -4170,6 +4392,14 @@ immer@1.10.0:
version "1.10.0"
version "1.10.0"
resolved "https://registry.npm.taobao.org/immer/download/immer-1.10.0.tgz#bad67605ba9c810275d91e1c2a47d4582e98286d"
resolved "https://registry.npm.taobao.org/immer/download/immer-1.10.0.tgz#bad67605ba9c810275d91e1c2a47d4582e98286d"
immutable@^3.7.4:
version "3.8.2"
resolved "https://registry.npm.taobao.org/immutable/download/immutable-3.8.2.tgz#c2439951455bb39913daf281376f1530e104adf3"
immutable@~3.7.4:
version "3.7.6"
resolved "https://registry.npm.taobao.org/immutable/download/immutable-3.7.6.tgz#13b4d3cb12befa15482a26fe1b2ebae640071e4b"
import-cwd@^2.0.0:
import-cwd@^2.0.0:
version "2.1.0"
version "2.1.0"
resolved "https://registry.npm.taobao.org/import-cwd/download/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9"
resolved "https://registry.npm.taobao.org/import-cwd/download/import-cwd-2.1.0.tgz#aa6cf36e722761285cb371ec6519f53e2435b0a9"
...
@@ -4504,7 +4734,7 @@ is-root@2.1.0:
...
@@ -4504,7 +4734,7 @@ is-root@2.1.0:
version "2.1.0"
version "2.1.0"
resolved "https://registry.npm.taobao.org/is-root/download/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c"
resolved "https://registry.npm.taobao.org/is-root/download/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c"
is-stream@^1.1.0:
is-stream@^1.
0.1, is-stream@^1.
1.0:
version "1.1.0"
version "1.1.0"
resolved "https://registry.npm.taobao.org/is-stream/download/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
resolved "https://registry.npm.taobao.org/is-stream/download/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
...
@@ -4550,6 +4780,13 @@ isobject@^3.0.0, isobject@^3.0.1:
...
@@ -4550,6 +4780,13 @@ isobject@^3.0.0, isobject@^3.0.1:
version "3.0.1"
version "3.0.1"
resolved "https://registry.npm.taobao.org/isobject/download/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
resolved "https://registry.npm.taobao.org/isobject/download/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
isomorphic-fetch@^2.1.1:
version "2.2.1"
resolved "https://registry.npm.taobao.org/isomorphic-fetch/download/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9"
dependencies:
node-fetch "^1.0.1"
whatwg-fetch ">=0.10.0"
isstream@~0.1.2:
isstream@~0.1.2:
version "0.1.2"
version "0.1.2"
resolved "https://registry.npm.taobao.org/isstream/download/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
resolved "https://registry.npm.taobao.org/isstream/download/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
...
@@ -5058,6 +5295,12 @@ json-stringify-safe@~5.0.1:
...
@@ -5058,6 +5295,12 @@ json-stringify-safe@~5.0.1:
version "5.0.1"
version "5.0.1"
resolved "https://registry.npm.taobao.org/json-stringify-safe/download/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
resolved "https://registry.npm.taobao.org/json-stringify-safe/download/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
json2mq@^0.2.0:
version "0.2.0"
resolved "https://registry.npm.taobao.org/json2mq/download/json2mq-0.2.0.tgz#b637bd3ba9eabe122c83e9720483aeb10d2c904a"
dependencies:
string-convert "^0.2.0"
json3@^3.3.2:
json3@^3.3.2:
version "3.3.3"
version "3.3.3"
resolved "https://registry.npm.taobao.org/json3/download/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81"
resolved "https://registry.npm.taobao.org/json3/download/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81"
...
@@ -5248,6 +5491,10 @@ lodash._reinterpolate@^3.0.0:
...
@@ -5248,6 +5491,10 @@ lodash._reinterpolate@^3.0.0:
version "3.0.0"
version "3.0.0"
resolved "https://registry.npm.taobao.org/lodash._reinterpolate/download/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
resolved "https://registry.npm.taobao.org/lodash._reinterpolate/download/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
lodash.debounce@^4.0.0, lodash.debounce@^4.0.8:
version "4.0.8"
resolved "https://registry.npm.taobao.org/lodash.debounce/download/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af"
lodash.memoize@^4.1.2:
lodash.memoize@^4.1.2:
version "4.1.2"
version "4.1.2"
resolved "https://registry.npm.taobao.org/lodash.memoize/download/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
resolved "https://registry.npm.taobao.org/lodash.memoize/download/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
...
@@ -5269,6 +5516,10 @@ lodash.templatesettings@^4.0.0:
...
@@ -5269,6 +5516,10 @@ lodash.templatesettings@^4.0.0:
dependencies:
dependencies:
lodash._reinterpolate "^3.0.0"
lodash._reinterpolate "^3.0.0"
lodash.throttle@^4.0.0:
version "4.1.1"
resolved "https://registry.npm.taobao.org/lodash.throttle/download/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4"
lodash.unescape@4.0.1:
lodash.unescape@4.0.1:
version "4.0.1"
version "4.0.1"
resolved "https://registry.npm.taobao.org/lodash.unescape/download/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c"
resolved "https://registry.npm.taobao.org/lodash.unescape/download/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c"
...
@@ -5277,7 +5528,7 @@ lodash.uniq@^4.5.0:
...
@@ -5277,7 +5528,7 @@ lodash.uniq@^4.5.0:
version "4.5.0"
version "4.5.0"
resolved "https://registry.npm.taobao.org/lodash.uniq/download/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
resolved "https://registry.npm.taobao.org/lodash.uniq/download/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
"lodash@>=3.5 <5", lodash@^4.1
7.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15
, lodash@^4.17.5:
"lodash@>=3.5 <5", lodash@^4.1
6.5, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.4
, lodash@^4.17.5:
version "4.17.15"
version "4.17.15"
resolved "https://registry.npm.taobao.org/lodash/download/lodash-4.17.15.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
resolved "https://registry.npm.taobao.org/lodash/download/lodash-4.17.15.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
...
@@ -5285,7 +5536,7 @@ loglevel@^1.4.1:
...
@@ -5285,7 +5536,7 @@ loglevel@^1.4.1:
version "1.6.6"
version "1.6.6"
resolved "https://registry.npm.taobao.org/loglevel/download/loglevel-1.6.6.tgz?cache=0&sync_timestamp=1573147570728&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Floglevel%2Fdownload%2Floglevel-1.6.6.tgz#0ee6300cc058db6b3551fa1c4bf73b83bb771312"
resolved "https://registry.npm.taobao.org/loglevel/download/loglevel-1.6.6.tgz?cache=0&sync_timestamp=1573147570728&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Floglevel%2Fdownload%2Floglevel-1.6.6.tgz#0ee6300cc058db6b3551fa1c4bf73b83bb771312"
loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0:
loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.
3.1, loose-envify@^1.
4.0:
version "1.4.0"
version "1.4.0"
resolved "https://registry.npm.taobao.org/loose-envify/download/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
resolved "https://registry.npm.taobao.org/loose-envify/download/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
dependencies:
dependencies:
...
@@ -5464,6 +5715,15 @@ mini-css-extract-plugin@0.8.0:
...
@@ -5464,6 +5715,15 @@ mini-css-extract-plugin@0.8.0:
schema-utils "^1.0.0"
schema-utils "^1.0.0"
webpack-sources "^1.1.0"
webpack-sources "^1.1.0"
mini-store@^2.0.0:
version "2.0.0"
resolved "https://registry.npm.taobao.org/mini-store/download/mini-store-2.0.0.tgz#0843c048d6942ce55e3e78b1b67fc063022b5488"
dependencies:
hoist-non-react-statics "^2.3.1"
prop-types "^15.6.0"
react-lifecycles-compat "^3.0.4"
shallowequal "^1.0.2"
minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
version "1.0.1"
version "1.0.1"
resolved "https://registry.npm.taobao.org/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
resolved "https://registry.npm.taobao.org/minimalistic-assert/download/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
...
@@ -5538,6 +5798,14 @@ mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1:
...
@@ -5538,6 +5798,14 @@ mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.1:
dependencies:
dependencies:
minimist "0.0.8"
minimist "0.0.8"
moment@2.x:
version "2.24.0"
resolved "https://registry.npm.taobao.org/moment/download/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b"
moment@^2.24.0:
version "2.24.0"
resolved "https://registry.npm.taobao.org/moment/download/moment-2.24.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fmoment%2Fdownload%2Fmoment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b"
move-concurrently@^1.0.1:
move-concurrently@^1.0.1:
version "1.0.1"
version "1.0.1"
resolved "https://registry.npm.taobao.org/move-concurrently/download/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92"
resolved "https://registry.npm.taobao.org/move-concurrently/download/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92"
...
@@ -5572,6 +5840,10 @@ multicast-dns@^6.0.1:
...
@@ -5572,6 +5840,10 @@ multicast-dns@^6.0.1:
dns-packet "^1.3.1"
dns-packet "^1.3.1"
thunky "^1.0.2"
thunky "^1.0.2"
mutationobserver-shim@^0.3.2:
version "0.3.3"
resolved "https://registry.npm.taobao.org/mutationobserver-shim/download/mutationobserver-shim-0.3.3.tgz#65869630bc89d7bf8c9cd9cb82188cd955aacd2b"
mute-stream@0.0.7:
mute-stream@0.0.7:
version "0.0.7"
version "0.0.7"
resolved "https://registry.npm.taobao.org/mute-stream/download/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
resolved "https://registry.npm.taobao.org/mute-stream/download/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
...
@@ -5634,6 +5906,13 @@ no-case@^2.2.0:
...
@@ -5634,6 +5906,13 @@ no-case@^2.2.0:
dependencies:
dependencies:
lower-case "^1.1.1"
lower-case "^1.1.1"
node-fetch@^1.0.1:
version "1.7.3"
resolved "https://registry.npm.taobao.org/node-fetch/download/node-fetch-1.7.3.tgz#980f6f72d85211a5347c6b2bc18c5b84c3eb47ef"
dependencies:
encoding "^0.1.11"
is-stream "^1.0.1"
node-forge@0.9.0:
node-forge@0.9.0:
version "0.9.0"
version "0.9.0"
resolved "https://registry.npm.taobao.org/node-forge/download/node-forge-0.9.0.tgz?cache=0&sync_timestamp=1569524669712&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnode-forge%2Fdownload%2Fnode-forge-0.9.0.tgz#d624050edbb44874adca12bb9a52ec63cb782579"
resolved "https://registry.npm.taobao.org/node-forge/download/node-forge-0.9.0.tgz?cache=0&sync_timestamp=1569524669712&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fnode-forge%2Fdownload%2Fnode-forge-0.9.0.tgz#d624050edbb44874adca12bb9a52ec63cb782579"
...
@@ -5796,7 +6075,7 @@ oauth-sign@~0.9.0:
...
@@ -5796,7 +6075,7 @@ oauth-sign@~0.9.0:
version "0.9.0"
version "0.9.0"
resolved "https://registry.npm.taobao.org/oauth-sign/download/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
resolved "https://registry.npm.taobao.org/oauth-sign/download/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
object-assign@4.1.1, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
object-assign@4.1.1, object-assign@
4.x, object-assign@
^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
version "4.1.1"
version "4.1.1"
resolved "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
resolved "https://registry.npm.taobao.org/object-assign/download/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
...
@@ -5887,6 +6166,12 @@ obuf@^1.0.0, obuf@^1.1.2:
...
@@ -5887,6 +6166,12 @@ obuf@^1.0.0, obuf@^1.1.2:
version "1.1.2"
version "1.1.2"
resolved "https://registry.npm.taobao.org/obuf/download/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
resolved "https://registry.npm.taobao.org/obuf/download/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
omit.js@^1.0.2:
version "1.0.2"
resolved "https://registry.npm.taobao.org/omit.js/download/omit.js-1.0.2.tgz#91a14f0eba84066dfa015bf30e474c47f30bc858"
dependencies:
babel-runtime "^6.23.0"
on-finished@~2.3.0:
on-finished@~2.3.0:
version "2.3.0"
version "2.3.0"
resolved "https://registry.npm.taobao.org/on-finished/download/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
resolved "https://registry.npm.taobao.org/on-finished/download/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
...
@@ -6897,7 +7182,7 @@ prompts@^2.0.1:
...
@@ -6897,7 +7182,7 @@ prompts@^2.0.1:
kleur "^3.0.3"
kleur "^3.0.3"
sisteransi "^1.0.3"
sisteransi "^1.0.3"
prop-types@^15.6.2, prop-types@^15.7.2:
prop-types@
15.x, prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.5.6, prop-types@^15.5.7, prop-types@^15.5.8, prop-types@^15.5.9, prop-types@^15.6.0, prop-types@
^15.6.2, prop-types@^15.7.2:
version "15.7.2"
version "15.7.2"
resolved "https://registry.npm.taobao.org/prop-types/download/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
resolved "https://registry.npm.taobao.org/prop-types/download/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
dependencies:
dependencies:
...
@@ -6996,7 +7281,7 @@ querystringify@^2.1.1:
...
@@ -6996,7 +7281,7 @@ querystringify@^2.1.1:
version "2.1.1"
version "2.1.1"
resolved "https://registry.npm.taobao.org/querystringify/download/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e"
resolved "https://registry.npm.taobao.org/querystringify/download/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e"
raf@3.4.1:
raf@3.4.1
, raf@^3.4.0, raf@^3.4.1
:
version "3.4.1"
version "3.4.1"
resolved "https://registry.npm.taobao.org/raf/download/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39"
resolved "https://registry.npm.taobao.org/raf/download/raf-3.4.1.tgz#0742e99a4a6552f445d73e3ee0328af0ff1ede39"
dependencies:
dependencies:
...
@@ -7028,6 +7313,414 @@ raw-body@2.4.0:
...
@@ -7028,6 +7313,414 @@ raw-body@2.4.0:
iconv-lite "0.4.24"
iconv-lite "0.4.24"
unpipe "1.0.0"
unpipe "1.0.0"
rc-align@^2.4.0, rc-align@^2.4.1:
version "2.4.5"
resolved "https://registry.npm.taobao.org/rc-align/download/rc-align-2.4.5.tgz#c941a586f59d1017f23a428f0b468663fb7102ab"
dependencies:
babel-runtime "^6.26.0"
dom-align "^1.7.0"
prop-types "^15.5.8"
rc-util "^4.0.4"
rc-animate@2.x, rc-animate@^2.10.1, rc-animate@^2.10.2, rc-animate@^2.3.0, rc-animate@^2.6.0, rc-animate@^2.8.2:
version "2.10.2"
resolved "https://registry.npm.taobao.org/rc-animate/download/rc-animate-2.10.2.tgz#217fdc76ff26cbf425a5caf87cc8a36ba4598456"
dependencies:
babel-runtime "6.x"
classnames "^2.2.6"
css-animation "^1.3.2"
prop-types "15.x"
raf "^3.4.0"
rc-util "^4.15.3"
react-lifecycles-compat "^3.0.4"
rc-animate@^3.0.0-rc.1:
version "3.0.0-rc.6"
resolved "https://registry.npm.taobao.org/rc-animate/download/rc-animate-3.0.0-rc.6.tgz#04288eefa118e0cae214536c8a903ffaac1bc3fb"
dependencies:
babel-runtime "6.x"
classnames "^2.2.5"
component-classes "^1.2.6"
fbjs "^0.8.16"
prop-types "15.x"
raf "^3.4.0"
rc-util "^4.5.0"
react-lifecycles-compat "^3.0.4"
rc-calendar@~9.15.5:
version "9.15.7"
resolved "https://registry.npm.taobao.org/rc-calendar/download/rc-calendar-9.15.7.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frc-calendar%2Fdownload%2Frc-calendar-9.15.7.tgz#b3dfc0ffb7aecc6dba5b6a2ebb516eb44908a5bd"
dependencies:
babel-runtime "6.x"
classnames "2.x"
moment "2.x"
prop-types "^15.5.8"
rc-trigger "^2.2.0"
rc-util "^4.1.1"
react-lifecycles-compat "^3.0.4"
rc-cascader@~0.17.4:
version "0.17.5"
resolved "https://registry.npm.taobao.org/rc-cascader/download/rc-cascader-0.17.5.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frc-cascader%2Fdownload%2Frc-cascader-0.17.5.tgz#4fde91d23b7608c420263c38eee9c0687f80f7dc"
dependencies:
array-tree-filter "^2.1.0"
prop-types "^15.5.8"
rc-trigger "^2.2.0"
rc-util "^4.0.4"
react-lifecycles-compat "^3.0.4"
shallow-equal "^1.0.0"
warning "^4.0.1"
rc-checkbox@~2.1.6:
version "2.1.8"
resolved "https://registry.npm.taobao.org/rc-checkbox/download/rc-checkbox-2.1.8.tgz?cache=0&sync_timestamp=1569306901314&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frc-checkbox%2Fdownload%2Frc-checkbox-2.1.8.tgz#eedd9ef9c2f3af5b3b8e5cde5254aa89ad1a880a"
dependencies:
babel-runtime "^6.23.0"
classnames "2.x"
prop-types "15.x"
react-lifecycles-compat "^3.0.4"
rc-collapse@~1.11.3:
version "1.11.7"
resolved "https://registry.npm.taobao.org/rc-collapse/download/rc-collapse-1.11.7.tgz#0b0d621aac36a980910cfb45365ac2c769455edb"
dependencies:
classnames "2.x"
css-animation "1.x"
prop-types "^15.5.6"
rc-animate "2.x"
react-is "^16.7.0"
react-lifecycles-compat "^3.0.4"
shallowequal "^1.1.0"
rc-dialog@~7.5.2:
version "7.5.12"
resolved "https://registry.npm.taobao.org/rc-dialog/download/rc-dialog-7.5.12.tgz#6f84b809b369cd6d257ac4b59b8465954b574553"
dependencies:
babel-runtime "6.x"
rc-animate "2.x"
rc-util "^4.8.1"
rc-drawer@~3.0.0:
version "3.0.2"
resolved "https://registry.npm.taobao.org/rc-drawer/download/rc-drawer-3.0.2.tgz#1c42b2b7790040344f8f05f1d132b1ef0e97b783"
dependencies:
babel-runtime "^6.26.0"
classnames "^2.2.6"
rc-util "^4.11.2"
react-lifecycles-compat "^3.0.4"
rc-dropdown@~2.4.1:
version "2.4.1"
resolved "https://registry.npm.taobao.org/rc-dropdown/download/rc-dropdown-2.4.1.tgz#aaef6eb3a5152cdd9982895c2a78d9b5f046cdec"
dependencies:
babel-runtime "^6.26.0"
classnames "^2.2.6"
prop-types "^15.5.8"
rc-trigger "^2.5.1"
react-lifecycles-compat "^3.0.2"
rc-editor-core@~0.8.3:
version "0.8.10"
resolved "https://registry.npm.taobao.org/rc-editor-core/download/rc-editor-core-0.8.10.tgz#6f215bc5df9c33ffa9f6c5b30ca73a7dabe8ab7c"
dependencies:
babel-runtime "^6.26.0"
classnames "^2.2.5"
draft-js "^0.10.0"
immutable "^3.7.4"
lodash "^4.16.5"
prop-types "^15.5.8"
setimmediate "^1.0.5"
rc-editor-mention@^1.1.13:
version "1.1.13"
resolved "https://registry.npm.taobao.org/rc-editor-mention/download/rc-editor-mention-1.1.13.tgz#9f1cab1065f86b01523840321790c2ab12ac5e8b"
dependencies:
babel-runtime "^6.23.0"
classnames "^2.2.5"
dom-scroll-into-view "^1.2.0"
draft-js "~0.10.0"
immutable "~3.7.4"
prop-types "^15.5.8"
rc-animate "^2.3.0"
rc-editor-core "~0.8.3"
rc-form@^2.4.10:
version "2.4.10"
resolved "https://registry.npm.taobao.org/rc-form/download/rc-form-2.4.10.tgz#8bf7260a4c9a1d5b82621cee5f82d8daa4ecb84e"
dependencies:
async-validator "~1.11.3"
babel-runtime "6.x"
create-react-class "^15.5.3"
dom-scroll-into-view "1.x"
hoist-non-react-statics "^3.3.0"
lodash "^4.17.4"
rc-util "^4.15.3"
warning "^4.0.3"
rc-hammerjs@~0.6.0:
version "0.6.9"
resolved "https://registry.npm.taobao.org/rc-hammerjs/download/rc-hammerjs-0.6.9.tgz#9a4ddbda1b2ec8f9b9596091a6a989842a243907"
dependencies:
babel-runtime "6.x"
hammerjs "^2.0.8"
prop-types "^15.5.9"
rc-input-number@~4.5.0:
version "4.5.1"
resolved "https://registry.npm.taobao.org/rc-input-number/download/rc-input-number-4.5.1.tgz#fcb03c1dda8b7b2a69fbb718f9c13c666caebd79"
dependencies:
babel-runtime "6.x"
classnames "^2.2.0"
prop-types "^15.5.7"
rc-util "^4.5.1"
rmc-feedback "^2.0.0"
rc-mentions@~0.4.0:
version "0.4.1"
resolved "https://registry.npm.taobao.org/rc-mentions/download/rc-mentions-0.4.1.tgz#d261c71e29f060776f0c466c81a6e43031019239"
dependencies:
"@ant-design/create-react-context" "^0.2.4"
classnames "^2.2.6"
rc-menu "^7.4.22"
rc-trigger "^2.6.2"
rc-util "^4.6.0"
react-lifecycles-compat "^3.0.4"
rc-menu@^7.3.0, rc-menu@^7.4.22, rc-menu@~7.5.1:
version "7.5.3"
resolved "https://registry.npm.taobao.org/rc-menu/download/rc-menu-7.5.3.tgz?cache=0&sync_timestamp=1573097831655&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frc-menu%2Fdownload%2Frc-menu-7.5.3.tgz#0bdb71ef1f0b4608a25eb9848fa9f673f5353579"
dependencies:
classnames "2.x"
dom-scroll-into-view "1.x"
mini-store "^2.0.0"
mutationobserver-shim "^0.3.2"
rc-animate "^2.10.1"
rc-trigger "^2.3.0"
rc-util "^4.13.0"
resize-observer-polyfill "^1.5.0"
shallowequal "^1.1.0"
rc-notification@~3.3.1:
version "3.3.1"
resolved "https://registry.npm.taobao.org/rc-notification/download/rc-notification-3.3.1.tgz#0baa3e70f8d40ab015ce8fa78c260c490fc7beb4"
dependencies:
babel-runtime "6.x"
classnames "2.x"
prop-types "^15.5.8"
rc-animate "2.x"
rc-util "^4.0.4"
rc-pagination@~1.20.5:
version "1.20.11"
resolved "https://registry.npm.taobao.org/rc-pagination/download/rc-pagination-1.20.11.tgz?cache=0&sync_timestamp=1573295174765&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frc-pagination%2Fdownload%2Frc-pagination-1.20.11.tgz#ff8ccbf422e229b0e36039bd33b5c9b619d74ad2"
dependencies:
babel-runtime "6.x"
classnames "^2.2.6"
prop-types "^15.5.7"
react-lifecycles-compat "^3.0.4"
rc-progress@~2.5.0:
version "2.5.2"
resolved "https://registry.npm.taobao.org/rc-progress/download/rc-progress-2.5.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frc-progress%2Fdownload%2Frc-progress-2.5.2.tgz#ab01ba4e5d2fa36fc9f6f058b10b720e7315560c"
dependencies:
babel-runtime "6.x"
prop-types "^15.5.8"
rc-rate@~2.5.0:
version "2.5.0"
resolved "https://registry.npm.taobao.org/rc-rate/download/rc-rate-2.5.0.tgz#72d4984a03d0a7a0e6779c7a79efcea27626abf6"
dependencies:
classnames "^2.2.5"
prop-types "^15.5.8"
rc-util "^4.3.0"
react-lifecycles-compat "^3.0.4"
rc-resize-observer@^0.1.0:
version "0.1.3"
resolved "https://registry.npm.taobao.org/rc-resize-observer/download/rc-resize-observer-0.1.3.tgz#097191f9c3ab186ed907b553ba6ef565df11c249"
dependencies:
classnames "^2.2.1"
rc-util "^4.13.0"
resize-observer-polyfill "^1.5.1"
rc-select@~9.2.0:
version "9.2.1"
resolved "https://registry.npm.taobao.org/rc-select/download/rc-select-9.2.1.tgz?cache=0&sync_timestamp=1573009683119&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frc-select%2Fdownload%2Frc-select-9.2.1.tgz#0fbf47a933c36e1e6ef76c88fab32f58029e6a01"
dependencies:
babel-runtime "^6.23.0"
classnames "2.x"
component-classes "1.x"
dom-scroll-into-view "1.x"
prop-types "^15.5.8"
raf "^3.4.0"
rc-animate "2.x"
rc-menu "^7.3.0"
rc-trigger "^2.5.4"
rc-util "^4.0.4"
react-lifecycles-compat "^3.0.2"
warning "^4.0.2"
rc-slider@~8.7.1:
version "8.7.1"
resolved "https://registry.npm.taobao.org/rc-slider/download/rc-slider-8.7.1.tgz#9ed07362dc93489a38e654b21b8122ad70fd3c42"
dependencies:
babel-runtime "6.x"
classnames "^2.2.5"
prop-types "^15.5.4"
rc-tooltip "^3.7.0"
rc-util "^4.0.4"
react-lifecycles-compat "^3.0.4"
shallowequal "^1.1.0"
warning "^4.0.3"
rc-steps@~3.5.0:
version "3.5.0"
resolved "https://registry.npm.taobao.org/rc-steps/download/rc-steps-3.5.0.tgz#36b2a7f1f49907b0d90363884b18623caf9fb600"
dependencies:
babel-runtime "^6.23.0"
classnames "^2.2.3"
lodash "^4.17.5"
prop-types "^15.5.7"
rc-switch@~1.9.0:
version "1.9.0"
resolved "https://registry.npm.taobao.org/rc-switch/download/rc-switch-1.9.0.tgz#ab2b878f2713c681358a453391976c9b95b290f7"
dependencies:
classnames "^2.2.1"
prop-types "^15.5.6"
react-lifecycles-compat "^3.0.4"
rc-table@~6.9.4:
version "6.9.5"
resolved "https://registry.npm.taobao.org/rc-table/download/rc-table-6.9.5.tgz?cache=0&sync_timestamp=1573453349872&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frc-table%2Fdownload%2Frc-table-6.9.5.tgz#b7394c3780d4ad2398d08d2059aba454f195273f"
dependencies:
classnames "^2.2.5"
component-classes "^1.2.6"
lodash "^4.17.5"
mini-store "^2.0.0"
prop-types "^15.5.8"
rc-util "^4.13.0"
react-lifecycles-compat "^3.0.2"
shallowequal "^1.0.2"
rc-tabs@~9.6.4:
version "9.6.7"
resolved "https://registry.npm.taobao.org/rc-tabs/download/rc-tabs-9.6.7.tgz?cache=0&sync_timestamp=1568002338812&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frc-tabs%2Fdownload%2Frc-tabs-9.6.7.tgz#c546115a351f5ed779ea5524143157f48ee0c015"
dependencies:
"@ant-design/create-react-context" "^0.2.4"
babel-runtime "6.x"
classnames "2.x"
lodash "^4.17.5"
prop-types "15.x"
raf "^3.4.1"
rc-hammerjs "~0.6.0"
rc-util "^4.0.4"
react-lifecycles-compat "^3.0.4"
resize-observer-polyfill "^1.5.1"
warning "^4.0.3"
rc-time-picker@~3.7.1:
version "3.7.2"
resolved "https://registry.npm.taobao.org/rc-time-picker/download/rc-time-picker-3.7.2.tgz?cache=0&sync_timestamp=1573007318125&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frc-time-picker%2Fdownload%2Frc-time-picker-3.7.2.tgz#fabe5501adf1374d31a2d3b47f1ba89fc2dc2467"
dependencies:
classnames "2.x"
moment "2.x"
prop-types "^15.5.8"
raf "^3.4.1"
rc-trigger "^2.2.0"
react-lifecycles-compat "^3.0.4"
rc-tooltip@^3.7.0, rc-tooltip@~3.7.3:
version "3.7.3"
resolved "https://registry.npm.taobao.org/rc-tooltip/download/rc-tooltip-3.7.3.tgz#280aec6afcaa44e8dff0480fbaff9e87fc00aecc"
dependencies:
babel-runtime "6.x"
prop-types "^15.5.8"
rc-trigger "^2.2.2"
rc-tree-select@~2.9.1:
version "2.9.1"
resolved "https://registry.npm.taobao.org/rc-tree-select/download/rc-tree-select-2.9.1.tgz?cache=0&sync_timestamp=1569728163715&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frc-tree-select%2Fdownload%2Frc-tree-select-2.9.1.tgz#d076b8ce5bf432df3fdd8a6a01cdd9c93c8e7399"
dependencies:
classnames "^2.2.1"
dom-scroll-into-view "^1.2.1"
prop-types "^15.5.8"
raf "^3.4.0"
rc-animate "^2.8.2"
rc-tree "~2.0.0"
rc-trigger "^3.0.0-rc.2"
rc-util "^4.5.0"
react-lifecycles-compat "^3.0.4"
shallowequal "^1.0.2"
warning "^4.0.1"
rc-tree@~2.0.0:
version "2.0.0"
resolved "https://registry.npm.taobao.org/rc-tree/download/rc-tree-2.0.0.tgz#68fc4c9ab696943b279a143619e2ecf05918fb53"
dependencies:
babel-runtime "^6.23.0"
classnames "2.x"
prop-types "^15.5.8"
rc-animate "^2.6.0"
rc-util "^4.5.1"
react-lifecycles-compat "^3.0.4"
warning "^3.0.0"
rc-tree@~2.1.0:
version "2.1.3"
resolved "https://registry.npm.taobao.org/rc-tree/download/rc-tree-2.1.3.tgz#5214ab1b21a1848eb9a2ddcb919e3bc46d6d390b"
dependencies:
"@ant-design/create-react-context" "^0.2.4"
classnames "2.x"
prop-types "^15.5.8"
rc-animate "^2.6.0"
rc-util "^4.5.1"
react-lifecycles-compat "^3.0.4"
warning "^4.0.3"
rc-trigger@^2.2.0, rc-trigger@^2.2.2, rc-trigger@^2.3.0, rc-trigger@^2.5.1, rc-trigger@^2.5.4, rc-trigger@^2.6.2:
version "2.6.5"
resolved "https://registry.npm.taobao.org/rc-trigger/download/rc-trigger-2.6.5.tgz?cache=0&sync_timestamp=1571628407132&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frc-trigger%2Fdownload%2Frc-trigger-2.6.5.tgz#140a857cf28bd0fa01b9aecb1e26a50a700e9885"
dependencies:
babel-runtime "6.x"
classnames "^2.2.6"
prop-types "15.x"
rc-align "^2.4.0"
rc-animate "2.x"
rc-util "^4.4.0"
react-lifecycles-compat "^3.0.4"
rc-trigger@^3.0.0-rc.2:
version "3.0.0-rc.3"
resolved "https://registry.npm.taobao.org/rc-trigger/download/rc-trigger-3.0.0-rc.3.tgz?cache=0&sync_timestamp=1571628407132&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Frc-trigger%2Fdownload%2Frc-trigger-3.0.0-rc.3.tgz#35842df1674d25315e1426a44882a4c97652258b"
dependencies:
babel-runtime "6.x"
classnames "^2.2.6"
prop-types "15.x"
raf "^3.4.0"
rc-align "^2.4.1"
rc-animate "^3.0.0-rc.1"
rc-util "^4.4.0"
rc-upload@~2.9.1:
version "2.9.2"
resolved "https://registry.npm.taobao.org/rc-upload/download/rc-upload-2.9.2.tgz#bf9f16f2458a9a07def00234a6618307406ac7dd"
dependencies:
babel-runtime "6.x"
classnames "^2.2.5"
prop-types "^15.5.7"
warning "4.x"
rc-util@^4.0.4, rc-util@^4.1.1, rc-util@^4.10.0, rc-util@^4.11.2, rc-util@^4.13.0, rc-util@^4.15.3, rc-util@^4.3.0, rc-util@^4.4.0, rc-util@^4.5.0, rc-util@^4.5.1, rc-util@^4.6.0, rc-util@^4.8.1:
version "4.15.3"
resolved "https://registry.npm.taobao.org/rc-util/download/rc-util-4.15.3.tgz#80ff9f6c706b3fc2e5d70e93fcb4659e2a754bb3"
dependencies:
add-dom-event-listener "^1.1.0"
babel-runtime "6.x"
prop-types "^15.5.10"
react-lifecycles-compat "^3.0.4"
shallowequal "^1.1.0"
rc@^1.2.7:
rc@^1.2.7:
version "1.2.8"
version "1.2.8"
resolved "https://registry.npm.taobao.org/rc/download/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
resolved "https://registry.npm.taobao.org/rc/download/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"
...
@@ -7091,69 +7784,32 @@ react-error-overlay@^6.0.3:
...
@@ -7091,69 +7784,32 @@ react-error-overlay@^6.0.3:
version "6.0.3"
version "6.0.3"
resolved "https://registry.npm.taobao.org/react-error-overlay/download/react-error-overlay-6.0.3.tgz#c378c4b0a21e88b2e159a3e62b2f531fd63bf60d"
resolved "https://registry.npm.taobao.org/react-error-overlay/download/react-error-overlay-6.0.3.tgz#c378c4b0a21e88b2e159a3e62b2f531fd63bf60d"
react-is@^16.8.1, react-is@^16.8.4:
react-is@^16.
7.0, react-is@^16.
8.1, react-is@^16.8.4:
version "16.11.0"
version "16.11.0"
resolved "https://registry.npm.taobao.org/react-is/download/react-is-16.11.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Freact-is%2Fdownload%2Freact-is-16.11.0.tgz#b85dfecd48ad1ce469ff558a882ca8e8313928fa"
resolved "https://registry.npm.taobao.org/react-is/download/react-is-16.11.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Freact-is%2Fdownload%2Freact-is-16.11.0.tgz#b85dfecd48ad1ce469ff558a882ca8e8313928fa"
react-
scripts@3.2.0
:
react-
lazy-load@^3.0.13
:
version "3.
2.0
"
version "3.
0.13
"
resolved "https://registry.npm.taobao.org/react-
scripts/download/react-scripts-3.2.0.tgz#58ccd6b4ffa27f1b4d2986cbdcaa916660e9e33c
"
resolved "https://registry.npm.taobao.org/react-
lazy-load/download/react-lazy-load-3.0.13.tgz#3b0a92d336d43d3f0d73cbe6f35b17050b08b824
"
dependencies:
dependencies:
"@babel/core" "7.6.0"
eventlistener "0.0.1"
"@svgr/webpack" "4.3.2"
lodash.debounce "^4.0.0"
"@typescript-eslint/eslint-plugin" "^2.2.0"
lodash.throttle "^4.0.0"
"@typescript-eslint/parser" "^2.2.0"
prop-types "^15.5.8"
babel-eslint "10.0.3"
babel-jest "^24.9.0"
react-lifecycles-compat@^3.0.2, react-lifecycles-compat@^3.0.4:
babel-loader "8.0.6"
version "3.0.4"
babel-plugin-named-asset-import "^0.3.4"
resolved "https://registry.npm.taobao.org/react-lifecycles-compat/download/react-lifecycles-compat-3.0.4.tgz#4f1a273afdfc8f3488a8c516bfda78f872352362"
babel-preset-react-app "^9.0.2"
camelcase "^5.2.0"
react-slick@~0.25.2:
case-sensitive-paths-webpack-plugin "2.2.0"
version "0.25.2"
css-loader "2.1.1"
resolved "https://registry.npm.taobao.org/react-slick/download/react-slick-0.25.2.tgz#56331b67d47d8bcfe2dceb6acab1c8fd5bd1f6bc"
dotenv "6.2.0"
dependencies:
dotenv-expand "5.1.0"
classnames "^2.2.5"
eslint "^6.1.0"
enquire.js "^2.1.6"
eslint-config-react-app "^5.0.2"
json2mq "^0.2.0"
eslint-loader "3.0.2"
lodash.debounce "^4.0.8"
eslint-plugin-flowtype "3.13.0"
resize-observer-polyfill "^1.5.0"
eslint-plugin-import "2.18.2"
eslint-plugin-jsx-a11y "6.2.3"
eslint-plugin-react "7.14.3"
eslint-plugin-react-hooks "^1.6.1"
file-loader "3.0.1"
fs-extra "7.0.1"
html-webpack-plugin "4.0.0-beta.5"
identity-obj-proxy "3.0.0"
is-wsl "^1.1.0"
jest "24.9.0"
jest-environment-jsdom-fourteen "0.1.0"
jest-resolve "24.9.0"
jest-watch-typeahead "0.4.0"
mini-css-extract-plugin "0.8.0"
optimize-css-assets-webpack-plugin "5.0.3"
pnp-webpack-plugin "1.5.0"
postcss-flexbugs-fixes "4.1.0"
postcss-loader "3.0.0"
postcss-normalize "7.0.1"
postcss-preset-env "6.7.0"
postcss-safe-parser "4.0.1"
react-app-polyfill "^1.0.4"
react-dev-utils "^9.1.0"
resolve "1.12.0"
resolve-url-loader "3.1.0"
sass-loader "7.2.0"
semver "6.3.0"
style-loader "1.0.0"
terser-webpack-plugin "1.4.1"
ts-pnp "1.1.4"
url-loader "2.1.0"
webpack "4.41.0"
webpack-dev-server "3.2.1"
webpack-manifest-plugin "2.1.1"
workbox-webpack-plugin "4.3.1"
optionalDependencies:
fsevents "2.0.7"
react@^16.11.0:
react@^16.11.0:
version "16.11.0"
version "16.11.0"
...
@@ -7380,6 +8036,10 @@ requires-port@^1.0.0:
...
@@ -7380,6 +8036,10 @@ requires-port@^1.0.0:
version "1.0.0"
version "1.0.0"
resolved "https://registry.npm.taobao.org/requires-port/download/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
resolved "https://registry.npm.taobao.org/requires-port/download/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
resize-observer-polyfill@^1.5.0, resize-observer-polyfill@^1.5.1:
version "1.5.1"
resolved "https://registry.npm.taobao.org/resize-observer-polyfill/download/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464"
resolve-cwd@^2.0.0:
resolve-cwd@^2.0.0:
version "2.0.0"
version "2.0.0"
resolved "https://registry.npm.taobao.org/resolve-cwd/download/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
resolved "https://registry.npm.taobao.org/resolve-cwd/download/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a"
...
@@ -7479,6 +8139,13 @@ ripemd160@^2.0.0, ripemd160@^2.0.1:
...
@@ -7479,6 +8139,13 @@ ripemd160@^2.0.0, ripemd160@^2.0.1:
hash-base "^3.0.0"
hash-base "^3.0.0"
inherits "^2.0.1"
inherits "^2.0.1"
rmc-feedback@^2.0.0:
version "2.0.0"
resolved "https://registry.npm.taobao.org/rmc-feedback/download/rmc-feedback-2.0.0.tgz#cbc6cb3ae63c7a635eef0e25e4fbaf5ac366eeaa"
dependencies:
babel-runtime "6.x"
classnames "^2.2.5"
rsvp@^4.8.4:
rsvp@^4.8.4:
version "4.8.5"
version "4.8.5"
resolved "https://registry.npm.taobao.org/rsvp/download/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734"
resolved "https://registry.npm.taobao.org/rsvp/download/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734"
...
@@ -7649,7 +8316,7 @@ set-value@^2.0.0, set-value@^2.0.1:
...
@@ -7649,7 +8316,7 @@ set-value@^2.0.0, set-value@^2.0.1:
is-plain-object "^2.0.3"
is-plain-object "^2.0.3"
split-string "^3.0.1"
split-string "^3.0.1"
setimmediate@^1.0.4:
setimmediate@^1.0.4
, setimmediate@^1.0.5
:
version "1.0.5"
version "1.0.5"
resolved "https://registry.npm.taobao.org/setimmediate/download/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
resolved "https://registry.npm.taobao.org/setimmediate/download/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
...
@@ -7683,6 +8350,14 @@ shallow-clone@^3.0.0:
...
@@ -7683,6 +8350,14 @@ shallow-clone@^3.0.0:
dependencies:
dependencies:
kind-of "^6.0.2"
kind-of "^6.0.2"
shallow-equal@^1.0.0:
version "1.2.0"
resolved "https://registry.npm.taobao.org/shallow-equal/download/shallow-equal-1.2.0.tgz#fd828d2029ff4e19569db7e19e535e94e2d1f5cc"
shallowequal@^1.0.2, shallowequal@^1.1.0:
version "1.1.0"
resolved "https://registry.npm.taobao.org/shallowequal/download/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8"
shebang-command@^1.2.0:
shebang-command@^1.2.0:
version "1.2.0"
version "1.2.0"
resolved "https://registry.npm.taobao.org/shebang-command/download/shebang-command-1.2.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fshebang-command%2Fdownload%2Fshebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
resolved "https://registry.npm.taobao.org/shebang-command/download/shebang-command-1.2.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fshebang-command%2Fdownload%2Fshebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
...
@@ -7958,6 +8633,10 @@ strict-uri-encode@^1.0.0:
...
@@ -7958,6 +8633,10 @@ strict-uri-encode@^1.0.0:
version "1.1.0"
version "1.1.0"
resolved "https://registry.npm.taobao.org/strict-uri-encode/download/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
resolved "https://registry.npm.taobao.org/strict-uri-encode/download/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
string-convert@^0.2.0:
version "0.2.1"
resolved "https://registry.npm.taobao.org/string-convert/download/string-convert-0.2.1.tgz#6982cc3049fbb4cd85f8b24568b9d9bf39eeff97"
string-length@^2.0.0:
string-length@^2.0.0:
version "2.0.0"
version "2.0.0"
resolved "https://registry.npm.taobao.org/string-length/download/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed"
resolved "https://registry.npm.taobao.org/string-length/download/string-length-2.0.0.tgz#d40dbb686a3ace960c1cffca562bf2c45f8363ed"
...
@@ -8224,6 +8903,10 @@ timsort@^0.3.0:
...
@@ -8224,6 +8903,10 @@ timsort@^0.3.0:
version "0.3.0"
version "0.3.0"
resolved "https://registry.npm.taobao.org/timsort/download/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4"
resolved "https://registry.npm.taobao.org/timsort/download/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4"
tinycolor2@^1.4.1:
version "1.4.1"
resolved "https://registry.npm.taobao.org/tinycolor2/download/tinycolor2-1.4.1.tgz#f4fad333447bc0b07d4dc8e9209d8f39a8ac77e8"
tmp@^0.0.33:
tmp@^0.0.33:
version "0.0.33"
version "0.0.33"
resolved "https://registry.npm.taobao.org/tmp/download/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
resolved "https://registry.npm.taobao.org/tmp/download/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
...
@@ -8264,6 +8947,10 @@ to-regex@^3.0.1, to-regex@^3.0.2:
...
@@ -8264,6 +8947,10 @@ to-regex@^3.0.1, to-regex@^3.0.2:
regex-not "^1.0.2"
regex-not "^1.0.2"
safe-regex "^1.1.0"
safe-regex "^1.1.0"
toggle-selection@^1.0.6:
version "1.0.6"
resolved "https://registry.npm.taobao.org/toggle-selection/download/toggle-selection-1.0.6.tgz#6e45b1263f2017fa0acc7d89d78b15b8bf77da32"
toidentifier@1.0.0:
toidentifier@1.0.0:
version "1.0.0"
version "1.0.0"
resolved "https://registry.npm.taobao.org/toidentifier/download/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
resolved "https://registry.npm.taobao.org/toidentifier/download/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
...
@@ -8349,6 +9036,10 @@ typedarray@^0.0.6:
...
@@ -8349,6 +9036,10 @@ typedarray@^0.0.6:
version "0.0.6"
version "0.0.6"
resolved "https://registry.npm.taobao.org/typedarray/download/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
resolved "https://registry.npm.taobao.org/typedarray/download/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
ua-parser-js@^0.7.18:
version "0.7.20"
resolved "https://registry.npm.taobao.org/ua-parser-js/download/ua-parser-js-0.7.20.tgz#7527178b82f6a62a0f243d1f94fd30e3e3c21098"
uglify-js@3.4.x:
uglify-js@3.4.x:
version "3.4.10"
version "3.4.10"
resolved "https://registry.npm.taobao.org/uglify-js/download/uglify-js-3.4.10.tgz?cache=0&sync_timestamp=1573031889241&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fuglify-js%2Fdownload%2Fuglify-js-3.4.10.tgz#9ad9563d8eb3acdfb8d38597d2af1d815f6a755f"
resolved "https://registry.npm.taobao.org/uglify-js/download/uglify-js-3.4.10.tgz?cache=0&sync_timestamp=1573031889241&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fuglify-js%2Fdownload%2Fuglify-js-3.4.10.tgz#9ad9563d8eb3acdfb8d38597d2af1d815f6a755f"
...
@@ -8560,6 +9251,18 @@ walker@^1.0.7, walker@~1.0.5:
...
@@ -8560,6 +9251,18 @@ walker@^1.0.7, walker@~1.0.5:
dependencies:
dependencies:
makeerror "1.0.x"
makeerror "1.0.x"
warning@4.x, warning@^4.0.1, warning@^4.0.2, warning@^4.0.3, warning@~4.0.3:
version "4.0.3"
resolved "https://registry.npm.taobao.org/warning/download/warning-4.0.3.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwarning%2Fdownload%2Fwarning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3"
dependencies:
loose-envify "^1.0.0"
warning@^3.0.0:
version "3.0.0"
resolved "https://registry.npm.taobao.org/warning/download/warning-3.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fwarning%2Fdownload%2Fwarning-3.0.0.tgz#32e5377cb572de4ab04753bdf8821c01ed605b7c"
dependencies:
loose-envify "^1.0.0"
watchpack@^1.6.0:
watchpack@^1.6.0:
version "1.6.0"
version "1.6.0"
resolved "https://registry.npm.taobao.org/watchpack/download/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00"
resolved "https://registry.npm.taobao.org/watchpack/download/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00"
...
@@ -8692,7 +9395,7 @@ whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3, whatwg-encoding@^1.0.5:
...
@@ -8692,7 +9395,7 @@ whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3, whatwg-encoding@^1.0.5:
dependencies:
dependencies:
iconv-lite "0.4.24"
iconv-lite "0.4.24"
whatwg-fetch@3.0.0:
whatwg-fetch@3.0.0
, whatwg-fetch@>=0.10.0
:
version "3.0.0"
version "3.0.0"
resolved "https://registry.npm.taobao.org/whatwg-fetch/download/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb"
resolved "https://registry.npm.taobao.org/whatwg-fetch/download/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb"
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment