diff --git a/.gitignore b/.gitignore
index 4c594b19..59da1ae0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -38,6 +38,7 @@ bower_components
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/
+buildserver/
src/.umi/
# Dependency directories
node_modules/
diff --git a/Routes.js b/Routes.js
new file mode 100644
index 00000000..9d8a6c92
--- /dev/null
+++ b/Routes.js
@@ -0,0 +1,11 @@
+import Detail from "./src/forge/Main/Detail";
+
+
+export default [
+ {
+ key:"detail",
+ path: "/:owner/:projectsId",
+ exact: true,
+ component: Detail,
+ },
+];
diff --git a/config/webpack.server.js b/config/webpack.server.js
new file mode 100644
index 00000000..f250fa42
--- /dev/null
+++ b/config/webpack.server.js
@@ -0,0 +1,28 @@
+const path = require("path");
+const nodeExternals = require("webpack-node-externals");
+
+const serverConfig = {
+ target:"node", //由于输出代码的运行环境是node,源码中依赖的node原生模块没必要打包进去;为了不把nodejs内置模块打包进输出文件中,例如: fs net模块等;
+ mode: "development",
+ entry: path.resolve(__dirname,"../server/index.js"),
+ output:{
+ filename:"bundle.js",
+ path: path.resolve(__dirname,"../buildserver")
+ },
+ externals:[nodeExternals()], //为了不把node_modules目录下的第三方模块打包进输出文件中,因为nodejs默认会去node_modules目录下去寻找和使用第三方模块。
+ module:{
+ rules:[
+ {
+ test: /\.js$/,
+ exclude: /node_modules/,
+ loader: "babel-loader",
+ },
+ {
+ test: /\.css$/,
+ use: ['style-loader', 'css-loader'],
+ },
+ ]
+ }
+};
+
+module.exports = serverConfig;
diff --git a/package-lock.json b/package-lock.json
index 7e1658f1..18bcb74d 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -51,7 +51,7 @@
},
"@antv/adjust": {
"version": "0.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@antv/adjust/-/adjust-0.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/@antv/adjust/-/adjust-0.1.1.tgz",
"integrity": "sha512-9FaMOyBlM4AgoRL0b5o0VhEKAYkexBNUrxV8XmpHU/9NBPJONBOB/NZUlQDqxtLItrt91tCfbAuMQmF529UX2Q==",
"requires": {
"@antv/util": "~1.3.1"
@@ -59,7 +59,7 @@
},
"@antv/attr": {
"version": "0.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@antv/attr/-/attr-0.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/@antv/attr/-/attr-0.1.2.tgz",
"integrity": "sha512-QXjP+T2I+pJQcwZx1oCA4tipG43vgeCeKcGGKahlcxb71OBAzjJZm1QbF4frKXcnOqRkxVXtCr70X9TRair3Ew==",
"requires": {
"@antv/util": "~1.3.1"
@@ -93,7 +93,7 @@
},
"@antv/coord": {
"version": "0.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@antv/coord/-/coord-0.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/@antv/coord/-/coord-0.1.0.tgz",
"integrity": "sha512-W1R8h3Jfb3AfMBVfCreFPMVetgEYuwHBIGn0+d3EgYXe2ckOF8XWjkpGF1fZhOMHREMr+Gt27NGiQh8yBdLUgg==",
"requires": {
"@antv/util": "~1.3.1"
@@ -131,12 +131,12 @@
},
"@antv/gl-matrix": {
"version": "2.7.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@antv/gl-matrix/-/gl-matrix-2.7.1.tgz",
+ "resolved": "https://registry.npmjs.org/@antv/gl-matrix/-/gl-matrix-2.7.1.tgz",
"integrity": "sha512-oOWcVNlpELIKi9x+Mm1Vwbz8pXfkbJKykoCIOJ/dNK79hSIANbpXJ5d3Rra9/wZqK6MC961B7sybFhPlLraT3Q=="
},
"@antv/scale": {
"version": "0.1.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@antv/scale/-/scale-0.1.5.tgz",
+ "resolved": "https://registry.npmjs.org/@antv/scale/-/scale-0.1.5.tgz",
"integrity": "sha512-7RAu4iH5+Hk21h6+aBMiDTfmLf4IibK2SWjx/+E4f4AXRpqucO+8u7IbZdFkakAWxvqhJtN3oePJuTKqOMcmlg==",
"requires": {
"@antv/util": "~1.3.1",
@@ -145,7 +145,7 @@
},
"@antv/util": {
"version": "1.3.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@antv/util/-/util-1.3.1.tgz",
+ "resolved": "https://registry.npmjs.org/@antv/util/-/util-1.3.1.tgz",
"integrity": "sha512-cbUta0hIJrKEaW3eKoGarz3Ita+9qUPF2YzTj8A6wds/nNiy20G26ztIWHU+5ThLc13B1n5Ik52LbaCaeg9enA==",
"requires": {
"@antv/gl-matrix": "^2.7.1"
@@ -153,7 +153,7 @@
},
"@babel/code-frame": {
"version": "7.5.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@babel/code-frame/-/code-frame-7.5.5.tgz",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz",
"integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==",
"requires": {
"@babel/highlight": "^7.0.0"
@@ -370,7 +370,7 @@
},
"@emotion/is-prop-valid": {
"version": "0.8.8",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
+ "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
"integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==",
"requires": {
"@emotion/memoize": "0.7.4"
@@ -378,12 +378,12 @@
},
"@emotion/memoize": {
"version": "0.7.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@emotion/memoize/-/memoize-0.7.4.tgz",
+ "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
"integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="
},
"@emotion/unitless": {
"version": "0.7.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@emotion/unitless/-/unitless-0.7.5.tgz",
+ "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz",
"integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg=="
},
"@hypnosphi/create-react-context": {
@@ -397,7 +397,7 @@
},
"@icons/material": {
"version": "0.2.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@icons/material/-/material-0.2.4.tgz",
+ "resolved": "https://registry.npmjs.org/@icons/material/-/material-0.2.4.tgz",
"integrity": "sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw=="
},
"@jridgewell/gen-mapping": {
@@ -443,12 +443,12 @@
},
"@monaco-editor/react": {
"version": "2.6.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@monaco-editor/react/-/react-2.6.1.tgz",
+ "resolved": "https://registry.npmjs.org/@monaco-editor/react/-/react-2.6.1.tgz",
"integrity": "sha512-nppV3QtwKh2c+J8Mdw/YZhHkdNTGmhwnkG824wSq3QiyOyfPKbThIWxkuRa2L8gcmWy0RLlIzJfQzLFeXyf1/w=="
},
"@mrmlnc/readdir-enhanced": {
"version": "2.2.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz",
+ "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz",
"integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==",
"requires": {
"call-me-maybe": "^1.0.1",
@@ -457,7 +457,7 @@
},
"@nodelib/fs.stat": {
"version": "1.1.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz",
"integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw=="
},
"@novnc/novnc": {
@@ -533,7 +533,7 @@
},
"@types/jss": {
"version": "9.5.8",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@types/jss/-/jss-9.5.8.tgz",
+ "resolved": "https://registry.npmjs.org/@types/jss/-/jss-9.5.8.tgz",
"integrity": "sha512-bBbHvjhm42UKki+wZpR89j73ykSXg99/bhuKuYYePtpma3ZAnmeGnl0WxXiZhPGsIfzKwCUkpPC0jlrVMBfRxA==",
"requires": {
"csstype": "^2.0.0",
@@ -590,7 +590,7 @@
},
"@types/react-transition-group": {
"version": "2.9.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@types/react-transition-group/-/react-transition-group-2.9.2.tgz",
+ "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-2.9.2.tgz",
"integrity": "sha512-5Fv2DQNO+GpdPZcxp2x/OQG/H19A01WlmpjVD9cKvVFmoVLOZ9LvBgSWG6pSXIU4og5fgbvGPaCV5+VGkWAEHA==",
"requires": {
"@types/react": "*"
@@ -603,7 +603,7 @@
},
"@types/source-list-map": {
"version": "0.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@types/source-list-map/-/source-list-map-0.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz",
"integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==",
"dev": true
},
@@ -827,7 +827,7 @@
},
"@webassemblyjs/ast": {
"version": "1.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/ast/-/ast-1.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz",
"integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==",
"dev": true,
"requires": {
@@ -838,25 +838,25 @@
},
"@webassemblyjs/floating-point-hex-parser": {
"version": "1.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz",
"integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==",
"dev": true
},
"@webassemblyjs/helper-api-error": {
"version": "1.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz",
"integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==",
"dev": true
},
"@webassemblyjs/helper-buffer": {
"version": "1.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz",
"integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==",
"dev": true
},
"@webassemblyjs/helper-code-frame": {
"version": "1.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz",
"integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==",
"dev": true,
"requires": {
@@ -865,13 +865,13 @@
},
"@webassemblyjs/helper-fsm": {
"version": "1.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz",
"integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==",
"dev": true
},
"@webassemblyjs/helper-module-context": {
"version": "1.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz",
"integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==",
"dev": true,
"requires": {
@@ -880,13 +880,13 @@
},
"@webassemblyjs/helper-wasm-bytecode": {
"version": "1.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz",
"integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==",
"dev": true
},
"@webassemblyjs/helper-wasm-section": {
"version": "1.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz",
"integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==",
"dev": true,
"requires": {
@@ -898,7 +898,7 @@
},
"@webassemblyjs/ieee754": {
"version": "1.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz",
"integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==",
"dev": true,
"requires": {
@@ -907,7 +907,7 @@
},
"@webassemblyjs/leb128": {
"version": "1.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/leb128/-/leb128-1.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz",
"integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==",
"dev": true,
"requires": {
@@ -916,13 +916,13 @@
},
"@webassemblyjs/utf8": {
"version": "1.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/utf8/-/utf8-1.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz",
"integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==",
"dev": true
},
"@webassemblyjs/wasm-edit": {
"version": "1.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz",
"integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==",
"dev": true,
"requires": {
@@ -938,7 +938,7 @@
},
"@webassemblyjs/wasm-gen": {
"version": "1.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz",
"integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==",
"dev": true,
"requires": {
@@ -951,7 +951,7 @@
},
"@webassemblyjs/wasm-opt": {
"version": "1.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz",
"integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==",
"dev": true,
"requires": {
@@ -963,7 +963,7 @@
},
"@webassemblyjs/wasm-parser": {
"version": "1.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz",
"integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==",
"dev": true,
"requires": {
@@ -977,7 +977,7 @@
},
"@webassemblyjs/wast-parser": {
"version": "1.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz",
"integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==",
"dev": true,
"requires": {
@@ -991,7 +991,7 @@
},
"@webassemblyjs/wast-printer": {
"version": "1.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz",
"integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==",
"dev": true,
"requires": {
@@ -1002,13 +1002,13 @@
},
"@xtuc/ieee754": {
"version": "1.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
"integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==",
"dev": true
},
"@xtuc/long": {
"version": "4.2.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@xtuc/long/-/long-4.2.2.tgz",
+ "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
"integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
"dev": true
},
@@ -1019,7 +1019,7 @@
},
"abbrev": {
"version": "1.1.1",
- "resolved": "https://registry.npmmirror.com/abbrev/-/abbrev-1.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
"integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
"dev": true
},
@@ -1027,7 +1027,6 @@
"version": "1.3.8",
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
- "dev": true,
"requires": {
"mime-types": "~2.1.34",
"negotiator": "0.6.3"
@@ -1075,7 +1074,7 @@
},
"add-dom-event-listener": {
"version": "1.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/add-dom-event-listener/-/add-dom-event-listener-1.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/add-dom-event-listener/-/add-dom-event-listener-1.1.0.tgz",
"integrity": "sha512-WCxx1ixHT0GQU9hb0KI/mhgRQhnU+U3GvwY6ZvVjYq8rsihIGoaIOUbY0yMPBxLH5MDtr0kz3fisWGNcbWW7Jw==",
"requires": {
"object-assign": "4.x"
@@ -1083,7 +1082,7 @@
},
"address": {
"version": "1.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/address/-/address-1.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz",
"integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA=="
},
"agent-base": {
@@ -1121,7 +1120,7 @@
"dependencies": {
"indent-string": {
"version": "4.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/indent-string/-/indent-string-4.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
"integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
"dev": true
}
@@ -1164,7 +1163,7 @@
},
"ajv-errors": {
"version": "1.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/ajv-errors/-/ajv-errors-1.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz",
"integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ=="
},
"ajv-keywords": {
@@ -1237,7 +1236,7 @@
},
"ansi-colors": {
"version": "3.2.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/ansi-colors/-/ansi-colors-3.2.4.tgz",
+ "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz",
"integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==",
"dev": true
},
@@ -1259,7 +1258,7 @@
},
"ansi-styles": {
"version": "3.2.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/ansi-styles/-/ansi-styles-3.2.1.tgz",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"requires": {
"color-convert": "^1.9.0"
@@ -1427,7 +1426,7 @@
},
"aproba": {
"version": "1.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/aproba/-/aproba-1.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz",
"integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==",
"dev": true
},
@@ -1443,7 +1442,7 @@
},
"argparse": {
"version": "1.0.10",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/argparse/-/argparse-1.0.10.tgz",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
"requires": {
"sprintf-js": "~1.0.2"
@@ -1469,7 +1468,7 @@
},
"arr-flatten": {
"version": "1.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/arr-flatten/-/arr-flatten-1.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
"integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="
},
"arr-union": {
@@ -1499,7 +1498,7 @@
},
"array-flatten": {
"version": "2.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/array-flatten/-/array-flatten-2.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz",
"integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ=="
},
"array-includes": {
@@ -1591,7 +1590,7 @@
},
"assert": {
"version": "1.5.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/assert/-/assert-1.5.0.tgz",
+ "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz",
"integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==",
"dev": true,
"requires": {
@@ -1653,13 +1652,13 @@
},
"async-limiter": {
"version": "1.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/async-limiter/-/async-limiter-1.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz",
"integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==",
"dev": true
},
"async-validator": {
"version": "1.11.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/async-validator/-/async-validator-1.11.5.tgz",
+ "resolved": "https://registry.npmjs.org/async-validator/-/async-validator-1.11.5.tgz",
"integrity": "sha512-XNtCsMAeAH1pdLMEg1z8/Bb3a8cdCbui9QbJATRFHHHW5kT6+NPI3zSVQUXgikTFITzsg+kYY5NTWhM2Orwt9w=="
},
"asynckit": {
@@ -1669,12 +1668,12 @@
},
"atob": {
"version": "2.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/atob/-/atob-2.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
"integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="
},
"autoprefixer": {
"version": "7.1.6",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/autoprefixer/-/autoprefixer-7.1.6.tgz",
+ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-7.1.6.tgz",
"integrity": "sha512-C9yv/UF3X+eJTi/zvfxuyfxmLibYrntpF3qoJYrMeQwgUJOZrZvpJiMG2FMQ3qnhWtF/be4pYONBBw95ZGe3vA==",
"requires": {
"browserslist": "^2.5.1",
@@ -1720,7 +1719,7 @@
"babel-cli": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-cli/-/babel-cli-6.26.0.tgz",
- "integrity": "sha1-UCq1SHTX24itALiHoGODzgPQAvE=",
+ "integrity": "sha512-wau+BDtQfuSBGQ9PzzFL3REvR9Sxnd4LKwtcHAiPjhugA7K/80vpHXafj+O5bAqJOuSefjOx5ZJnNSR2J1Qw6Q==",
"dev": true,
"requires": {
"babel-core": "^6.26.0",
@@ -1743,7 +1742,7 @@
"chokidar": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz",
- "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=",
+ "integrity": "sha512-mk8fAWcRUOxY7btlLtitj3A45jOwSAxH4tOFOoEGbVsl6cL6pPMWUy7dwZ/canfj3QEdP6FHSnf/l1c6/WkzVg==",
"dev": true,
"optional": true,
"requires": {
@@ -1761,7 +1760,7 @@
"source-map": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
- "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
+ "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==",
"dev": true
}
}
@@ -1835,7 +1834,7 @@
},
"babel-generator": {
"version": "6.26.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/babel-generator/-/babel-generator-6.26.1.tgz",
+ "resolved": "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz",
"integrity": "sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==",
"requires": {
"babel-messages": "^6.23.0",
@@ -2037,7 +2036,7 @@
},
"babel-loader": {
"version": "7.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/babel-loader/-/babel-loader-7.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-7.1.2.tgz",
"integrity": "sha512-jRwlFbINAeyDStqK6Dd5YuY0k5YuzQUvlz2ZamuXrXmxav3pNqe9vfJ402+2G+OmlJSXxCOpB6Uz0INM7RQe2A==",
"dev": true,
"requires": {
@@ -2065,7 +2064,7 @@
},
"babel-plugin-dynamic-import-node": {
"version": "1.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-1.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-1.1.0.tgz",
"integrity": "sha512-tTfZbM9Ecwj3GK50mnPrUpinTwA4xXmDiQGCk/aBYbvl1+X8YqldK86wZ1owVJ4u3mrKbRlXMma80J18qwiaTQ==",
"dev": true,
"requires": {
@@ -2085,7 +2084,7 @@
},
"babel-plugin-istanbul": {
"version": "4.1.6",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz",
+ "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.6.tgz",
"integrity": "sha512-PWP9FQ1AhZhS01T/4qLSKoHGY/xvkZdVBGlKM/HuxxS3+sC66HhTNR7+MpbO/so/cz/wY94MeSWJuP1hXIPfwQ==",
"requires": {
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
@@ -2346,7 +2345,7 @@
},
"babel-plugin-transform-es2015-modules-commonjs": {
"version": "6.26.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz",
+ "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz",
"integrity": "sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==",
"dev": true,
"requires": {
@@ -2589,9 +2588,9 @@
}
},
"babel-preset-env": {
- "version": "1.6.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/babel-preset-env/-/babel-preset-env-1.6.1.tgz",
- "integrity": "sha512-W6VIyA6Ch9ePMI7VptNn2wBM6dbG0eSz25HEiL40nQXCsXGTGZSTZu1Iap+cj3Q0S5a7T9+529l/5Bkvd+afNA==",
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.7.0.tgz",
+ "integrity": "sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg==",
"dev": true,
"requires": {
"babel-plugin-check-es2015-constants": "^6.22.0",
@@ -2621,9 +2620,21 @@
"babel-plugin-transform-es2015-unicode-regex": "^6.22.0",
"babel-plugin-transform-exponentiation-operator": "^6.22.0",
"babel-plugin-transform-regenerator": "^6.22.0",
- "browserslist": "^2.1.2",
+ "browserslist": "^3.2.6",
"invariant": "^2.2.2",
"semver": "^5.3.0"
+ },
+ "dependencies": {
+ "browserslist": {
+ "version": "3.2.8",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-3.2.8.tgz",
+ "integrity": "sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==",
+ "dev": true,
+ "requires": {
+ "caniuse-lite": "^1.0.30000844",
+ "electron-to-chromium": "^1.3.47"
+ }
+ }
}
},
"babel-preset-es2015": {
@@ -2691,7 +2702,7 @@
},
"babel-preset-react-app": {
"version": "3.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/babel-preset-react-app/-/babel-preset-react-app-3.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-3.1.2.tgz",
"integrity": "sha512-/sh5Qd5T08PYa6t4kuCdKh9tXp6/m/Jwyx7PJTqugsYMfsDUJMlBXOs5EwFODHprzjWrmQ0SydnMZu9FY4MZYg==",
"dev": true,
"requires": {
@@ -2708,6 +2719,46 @@
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1"
+ },
+ "dependencies": {
+ "babel-preset-env": {
+ "version": "1.6.1",
+ "resolved": "https://registry.npmjs.org/babel-preset-env/-/babel-preset-env-1.6.1.tgz",
+ "integrity": "sha512-W6VIyA6Ch9ePMI7VptNn2wBM6dbG0eSz25HEiL40nQXCsXGTGZSTZu1Iap+cj3Q0S5a7T9+529l/5Bkvd+afNA==",
+ "dev": true,
+ "requires": {
+ "babel-plugin-check-es2015-constants": "^6.22.0",
+ "babel-plugin-syntax-trailing-function-commas": "^6.22.0",
+ "babel-plugin-transform-async-to-generator": "^6.22.0",
+ "babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
+ "babel-plugin-transform-es2015-block-scoped-functions": "^6.22.0",
+ "babel-plugin-transform-es2015-block-scoping": "^6.23.0",
+ "babel-plugin-transform-es2015-classes": "^6.23.0",
+ "babel-plugin-transform-es2015-computed-properties": "^6.22.0",
+ "babel-plugin-transform-es2015-destructuring": "^6.23.0",
+ "babel-plugin-transform-es2015-duplicate-keys": "^6.22.0",
+ "babel-plugin-transform-es2015-for-of": "^6.23.0",
+ "babel-plugin-transform-es2015-function-name": "^6.22.0",
+ "babel-plugin-transform-es2015-literals": "^6.22.0",
+ "babel-plugin-transform-es2015-modules-amd": "^6.22.0",
+ "babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
+ "babel-plugin-transform-es2015-modules-systemjs": "^6.23.0",
+ "babel-plugin-transform-es2015-modules-umd": "^6.23.0",
+ "babel-plugin-transform-es2015-object-super": "^6.22.0",
+ "babel-plugin-transform-es2015-parameters": "^6.23.0",
+ "babel-plugin-transform-es2015-shorthand-properties": "^6.22.0",
+ "babel-plugin-transform-es2015-spread": "^6.22.0",
+ "babel-plugin-transform-es2015-sticky-regex": "^6.22.0",
+ "babel-plugin-transform-es2015-template-literals": "^6.22.0",
+ "babel-plugin-transform-es2015-typeof-symbol": "^6.23.0",
+ "babel-plugin-transform-es2015-unicode-regex": "^6.22.0",
+ "babel-plugin-transform-exponentiation-operator": "^6.22.0",
+ "babel-plugin-transform-regenerator": "^6.22.0",
+ "browserslist": "^2.1.2",
+ "invariant": "^2.2.2",
+ "semver": "^5.3.0"
+ }
+ }
}
},
"babel-preset-stage-2": {
@@ -2814,7 +2865,7 @@
},
"babylon": {
"version": "6.18.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/babylon/-/babylon-6.18.0.tgz",
+ "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz",
"integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ=="
},
"balanced-match": {
@@ -2824,7 +2875,7 @@
},
"base": {
"version": "0.11.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/base/-/base-0.11.2.tgz",
+ "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
"integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
"requires": {
"cache-base": "^1.0.1",
@@ -2846,7 +2897,7 @@
},
"is-accessor-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
"integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
"requires": {
"kind-of": "^6.0.0"
@@ -2854,7 +2905,7 @@
},
"is-data-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
"integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
"requires": {
"kind-of": "^6.0.0"
@@ -2862,7 +2913,7 @@
},
"is-descriptor": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
"integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
"requires": {
"is-accessor-descriptor": "^1.0.0",
@@ -2877,7 +2928,7 @@
},
"kind-of": {
"version": "6.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
}
}
@@ -2910,7 +2961,7 @@
},
"bfj": {
"version": "6.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/bfj/-/bfj-6.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/bfj/-/bfj-6.1.2.tgz",
"integrity": "sha512-BmBJa4Lip6BPRINSZ0BPEIfB1wUY/9rwbwvIHQA1KjX9om29B6id0wnWXq7m3bn5JrUVjeOTnVuhPT1FiHwPGw==",
"dev": true,
"requires": {
@@ -2922,12 +2973,12 @@
},
"big.js": {
"version": "5.2.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/big.js/-/big.js-5.2.2.tgz",
+ "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
"integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="
},
"binary-extensions": {
"version": "1.13.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/binary-extensions/-/binary-extensions-1.13.1.tgz",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz",
"integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw=="
},
"bindings": {
@@ -2987,7 +3038,7 @@
},
"bluebird": {
"version": "3.7.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/bluebird/-/bluebird-3.7.2.tgz",
+ "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
"integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==",
"dev": true
},
@@ -3001,7 +3052,6 @@
"version": "1.20.1",
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz",
"integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==",
- "dev": true,
"requires": {
"bytes": "3.1.2",
"content-type": "~1.0.4",
@@ -3021,7 +3071,6 @@
"version": "0.4.24",
"resolved": "http://173.15.15.82:8081/repository/npm-all/iconv-lite/-/iconv-lite-0.4.24.tgz",
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
- "dev": true,
"requires": {
"safer-buffer": ">= 2.1.2 < 3"
}
@@ -3030,7 +3079,6 @@
"version": "6.11.0",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz",
"integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
- "dev": true,
"requires": {
"side-channel": "^1.0.4"
}
@@ -3059,7 +3107,7 @@
},
"boxen": {
"version": "1.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/boxen/-/boxen-1.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz",
"integrity": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==",
"dev": true,
"requires": {
@@ -3086,7 +3134,7 @@
},
"chalk": {
"version": "2.4.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"requires": {
@@ -3124,7 +3172,7 @@
},
"brace-expansion": {
"version": "1.1.11",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/brace-expansion/-/brace-expansion-1.1.11.tgz",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
"requires": {
"balanced-match": "^1.0.0",
@@ -3154,12 +3202,12 @@
},
"browser-process-hrtime": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz",
"integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow=="
},
"browser-resolve": {
"version": "1.11.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/browser-resolve/-/browser-resolve-1.11.3.tgz",
+ "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz",
"integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==",
"requires": {
"resolve": "1.1.7"
@@ -3174,7 +3222,7 @@
},
"browserify-aes": {
"version": "1.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/browserify-aes/-/browserify-aes-1.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz",
"integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==",
"dev": true,
"requires": {
@@ -3188,7 +3236,7 @@
},
"browserify-cipher": {
"version": "1.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/browserify-cipher/-/browserify-cipher-1.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz",
"integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==",
"dev": true,
"requires": {
@@ -3199,7 +3247,7 @@
},
"browserify-des": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/browserify-des/-/browserify-des-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz",
"integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==",
"dev": true,
"requires": {
@@ -3251,7 +3299,7 @@
},
"browserify-zlib": {
"version": "0.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz",
"integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==",
"dev": true,
"requires": {
@@ -3260,7 +3308,7 @@
},
"browserslist": {
"version": "2.11.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/browserslist/-/browserslist-2.11.3.tgz",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-2.11.3.tgz",
"integrity": "sha512-yWu5cXT7Av6mVwzWc8lMsJMHWn4xyjSuGYi4IozbVTLUOEYPSagUB8kiMDUHA1fS3zjr8nkxkn9jdvug4BBRmA==",
"requires": {
"caniuse-lite": "^1.0.30000792",
@@ -3269,7 +3317,7 @@
},
"bser": {
"version": "2.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/bser/-/bser-2.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz",
"integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
"requires": {
"node-int64": "^0.4.0"
@@ -3277,7 +3325,7 @@
},
"buffer": {
"version": "4.9.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/buffer/-/buffer-4.9.2.tgz",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz",
"integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==",
"dev": true,
"requires": {
@@ -3294,7 +3342,7 @@
},
"buffer-indexof": {
"version": "1.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/buffer-indexof/-/buffer-indexof-1.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz",
"integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==",
"dev": true
},
@@ -3317,7 +3365,7 @@
},
"bundle-loader": {
"version": "0.5.6",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/bundle-loader/-/bundle-loader-0.5.6.tgz",
+ "resolved": "https://registry.npmjs.org/bundle-loader/-/bundle-loader-0.5.6.tgz",
"integrity": "sha512-SUgX+u/LJzlJiuoIghuubZ66eflehnjmqSfh/ib9DTe08sxRJ5F/MhHSjp7GfSJivSp8NWgez4PVNAUuMg7vSg==",
"requires": {
"loader-utils": "^1.1.0"
@@ -3326,12 +3374,11 @@
"bytes": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
- "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
- "dev": true
+ "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="
},
"cacache": {
"version": "10.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/cacache/-/cacache-10.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-10.0.4.tgz",
"integrity": "sha512-Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA==",
"dev": true,
"requires": {
@@ -3360,7 +3407,7 @@
},
"cache-base": {
"version": "1.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/cache-base/-/cache-base-1.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
"integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
"requires": {
"collection-visit": "^1.0.0",
@@ -3474,7 +3521,7 @@
},
"caniuse-api": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/caniuse-api/-/caniuse-api-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz",
"integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==",
"dev": true,
"requires": {
@@ -3576,13 +3623,13 @@
},
"check-types": {
"version": "8.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/check-types/-/check-types-8.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/check-types/-/check-types-8.0.3.tgz",
"integrity": "sha512-YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ==",
"dev": true
},
"chokidar": {
"version": "2.1.8",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/chokidar/-/chokidar-2.1.8.tgz",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz",
"integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==",
"requires": {
"anymatch": "^2.0.0",
@@ -3601,7 +3648,7 @@
"dependencies": {
"anymatch": {
"version": "2.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/anymatch/-/anymatch-2.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
"integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
"requires": {
"micromatch": "^3.1.4",
@@ -3630,7 +3677,7 @@
},
"braces": {
"version": "2.3.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/braces/-/braces-2.3.2.tgz",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
"integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
"requires": {
"arr-flatten": "^1.1.0",
@@ -3723,7 +3770,7 @@
},
"is-descriptor": {
"version": "0.1.6",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
"integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
"requires": {
"is-accessor-descriptor": "^0.1.6",
@@ -3733,14 +3780,14 @@
},
"kind-of": {
"version": "5.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-5.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
"integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
}
}
},
"extglob": {
"version": "2.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/extglob/-/extglob-2.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
"integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
"requires": {
"array-unique": "^0.3.2",
@@ -3813,7 +3860,7 @@
},
"is-accessor-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
"integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
"requires": {
"kind-of": "^6.0.0"
@@ -3821,7 +3868,7 @@
},
"is-data-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
"integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
"requires": {
"kind-of": "^6.0.0"
@@ -3829,7 +3876,7 @@
},
"is-descriptor": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
"integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
"requires": {
"is-accessor-descriptor": "^1.0.0",
@@ -3875,12 +3922,12 @@
},
"kind-of": {
"version": "6.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
},
"micromatch": {
"version": "3.1.10",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/micromatch/-/micromatch-3.1.10.tgz",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
"integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
"requires": {
"arr-diff": "^4.0.0",
@@ -3900,14 +3947,14 @@
},
"normalize-path": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/normalize-path/-/normalize-path-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
}
}
},
"chownr": {
"version": "1.1.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/chownr/-/chownr-1.1.4.tgz",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz",
"integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==",
"dev": true
},
@@ -3919,12 +3966,12 @@
},
"ci-info": {
"version": "1.6.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/ci-info/-/ci-info-1.6.0.tgz",
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz",
"integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A=="
},
"cipher-base": {
"version": "1.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/cipher-base/-/cipher-base-1.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz",
"integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==",
"dev": true,
"requires": {
@@ -3934,13 +3981,13 @@
},
"circular-json": {
"version": "0.3.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/circular-json/-/circular-json-0.3.3.tgz",
+ "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz",
"integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==",
"dev": true
},
"class-utils": {
"version": "0.3.6",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/class-utils/-/class-utils-0.3.6.tgz",
+ "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
"integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
"requires": {
"arr-union": "^3.1.0",
@@ -3980,7 +4027,7 @@
},
"clean-stack": {
"version": "2.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/clean-stack/-/clean-stack-2.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
"integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
"dev": true
},
@@ -4000,7 +4047,7 @@
},
"cli-width": {
"version": "2.2.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/cli-width/-/cli-width-2.2.1.tgz",
+ "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz",
"integrity": "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw=="
},
"clipboard": {
@@ -4030,7 +4077,7 @@
},
"clone-deep": {
"version": "4.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/clone-deep/-/clone-deep-4.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz",
"integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==",
"dev": true,
"requires": {
@@ -4041,7 +4088,7 @@
"dependencies": {
"kind-of": {
"version": "6.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
"dev": true
}
@@ -4060,7 +4107,7 @@
},
"coa": {
"version": "2.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/coa/-/coa-2.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz",
"integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==",
"dev": true,
"requires": {
@@ -4071,7 +4118,7 @@
"dependencies": {
"chalk": {
"version": "2.4.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"requires": {
@@ -4118,7 +4165,7 @@
},
"color-convert": {
"version": "1.9.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/color-convert/-/color-convert-1.9.3.tgz",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"requires": {
"color-name": "1.1.3"
@@ -4141,7 +4188,7 @@
},
"combined-stream": {
"version": "1.0.8",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/combined-stream/-/combined-stream-1.0.8.tgz",
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
"requires": {
"delayed-stream": "~1.0.0"
@@ -4149,7 +4196,7 @@
},
"commander": {
"version": "2.20.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/commander/-/commander-2.20.3.tgz",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
"integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ=="
},
"commondir": {
@@ -4168,7 +4215,7 @@
},
"component-emitter": {
"version": "1.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/component-emitter/-/component-emitter-1.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz",
"integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg=="
},
"component-indexof": {
@@ -4178,7 +4225,7 @@
},
"compressible": {
"version": "2.0.18",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/compressible/-/compressible-2.0.18.tgz",
+ "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz",
"integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==",
"dev": true,
"requires": {
@@ -4187,7 +4234,7 @@
},
"compression": {
"version": "1.7.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/compression/-/compression-1.7.4.tgz",
+ "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz",
"integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==",
"dev": true,
"requires": {
@@ -4216,7 +4263,7 @@
},
"compression-webpack-plugin": {
"version": "1.1.12",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/compression-webpack-plugin/-/compression-webpack-plugin-1.1.12.tgz",
+ "resolved": "https://registry.npmjs.org/compression-webpack-plugin/-/compression-webpack-plugin-1.1.12.tgz",
"integrity": "sha512-UpBXSHbrCSdSZieAffqXlAQpLO2fikVVRYibrWlbHYzKpOw1Y4jwkVZ/+S91GzWuJvXSbc8SBy/e8fQJh8uEMQ==",
"dev": true,
"requires": {
@@ -4248,7 +4295,7 @@
},
"concat-stream": {
"version": "1.6.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/concat-stream/-/concat-stream-1.6.2.tgz",
+ "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
"integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
"dev": true,
"requires": {
@@ -4306,13 +4353,13 @@
},
"connect-history-api-fallback": {
"version": "1.6.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz",
+ "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz",
"integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==",
"dev": true
},
"connected-react-router": {
"version": "4.4.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/connected-react-router/-/connected-react-router-4.4.1.tgz",
+ "resolved": "https://registry.npmjs.org/connected-react-router/-/connected-react-router-4.4.1.tgz",
"integrity": "sha512-2QiSQPjqePkblAdctpCtWLskwu4WcZe+iYGMH8epUIVga87tNEdT005/nluVC7lHdmPIKVB4lW3tSuldYYcPZw==",
"requires": {
"immutable": "^3.8.1"
@@ -4327,7 +4374,7 @@
},
"console-browserify": {
"version": "1.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/console-browserify/-/console-browserify-1.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz",
"integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==",
"dev": true
},
@@ -4353,7 +4400,6 @@
"version": "0.5.4",
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
"integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
- "dev": true,
"requires": {
"safe-buffer": "5.2.1"
}
@@ -4361,12 +4407,11 @@
"content-type": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
- "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
- "dev": true
+ "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA=="
},
"content-type-parser": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/content-type-parser/-/content-type-parser-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/content-type-parser/-/content-type-parser-1.0.2.tgz",
"integrity": "sha512-lM4l4CnMEwOLHAHr/P6MEZwZFPJFtAAKgL6pogbXmVZggIqXhdB6RbBtPOTsw2FcXwYhehRGERJmRrjOiIB8pQ=="
},
"contour_plot": {
@@ -4387,8 +4432,7 @@
"cookie-signature": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
- "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==",
- "dev": true
+ "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="
},
"copy-anything": {
"version": "2.0.6",
@@ -4400,7 +4444,7 @@
},
"copy-concurrently": {
"version": "1.0.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/copy-concurrently/-/copy-concurrently-1.0.5.tgz",
+ "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz",
"integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==",
"dev": true,
"requires": {
@@ -4493,7 +4537,7 @@
},
"create-hash": {
"version": "1.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/create-hash/-/create-hash-1.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz",
"integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==",
"dev": true,
"requires": {
@@ -4506,7 +4550,7 @@
},
"create-hmac": {
"version": "1.1.7",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/create-hmac/-/create-hmac-1.1.7.tgz",
+ "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz",
"integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==",
"dev": true,
"requires": {
@@ -4639,7 +4683,7 @@
},
"crypto-browserify": {
"version": "3.12.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
+ "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
"integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==",
"dev": true,
"requires": {
@@ -4664,7 +4708,7 @@
},
"css-animation": {
"version": "1.6.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/css-animation/-/css-animation-1.6.1.tgz",
+ "resolved": "https://registry.npmjs.org/css-animation/-/css-animation-1.6.1.tgz",
"integrity": "sha512-/48+/BaEaHRY6kNQ2OIPzKf9A6g8WjZYjhiNDNuIVbsm5tXCGIAsHDjB4Xu1C4vXJtUWZo26O68OQkDpNBaPog==",
"requires": {
"babel-runtime": "6.x",
@@ -4673,7 +4717,7 @@
},
"css-box-model": {
"version": "1.2.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/css-box-model/-/css-box-model-1.2.1.tgz",
+ "resolved": "https://registry.npmjs.org/css-box-model/-/css-box-model-1.2.1.tgz",
"integrity": "sha512-a7Vr4Q/kd/aw96bnJG332W9V9LkJO69JRcaCYDUqjp6/z0w6VcZjgAcTbgFxEPfBgdnAwlh3iwu+hLopa+flJw==",
"requires": {
"tiny-invariant": "^1.0.6"
@@ -4692,7 +4736,7 @@
},
"css-declaration-sorter": {
"version": "4.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz",
"integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==",
"dev": true,
"requires": {
@@ -4735,13 +4779,13 @@
"dependencies": {
"camelcase": {
"version": "5.3.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/camelcase/-/camelcase-5.3.1.tgz",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
"dev": true
},
"normalize-path": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/normalize-path/-/normalize-path-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
"dev": true
},
@@ -4774,7 +4818,7 @@
},
"semver": {
"version": "6.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/semver/-/semver-6.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
"dev": true
}
@@ -4795,13 +4839,13 @@
},
"css-select-base-adapter": {
"version": "0.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz",
"integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==",
"dev": true
},
"css-to-react-native": {
"version": "2.3.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/css-to-react-native/-/css-to-react-native-2.3.2.tgz",
+ "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-2.3.2.tgz",
"integrity": "sha512-VOFaeZA053BqvvvqIA8c9n0+9vFppVBAHCp6JgFTtTMU3Mzi+XnelJ9XC9ul3BqFzZyQ5N+H0SnwsWT2Ebchxw==",
"requires": {
"camelize": "^1.0.0",
@@ -4811,7 +4855,7 @@
},
"css-tree": {
"version": "1.0.0-alpha.37",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/css-tree/-/css-tree-1.0.0-alpha.37.tgz",
+ "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz",
"integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==",
"dev": true,
"requires": {
@@ -4835,7 +4879,7 @@
},
"cssesc": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/cssesc/-/cssesc-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
"integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
"dev": true
},
@@ -4932,7 +4976,7 @@
},
"cssnano-util-raw-cache": {
"version": "4.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz",
"integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==",
"dev": true,
"requires": {
@@ -4953,7 +4997,7 @@
},
"cssnano-util-same-parent": {
"version": "4.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz",
"integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==",
"dev": true
},
@@ -4986,7 +5030,7 @@
},
"cssom": {
"version": "0.3.8",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/cssom/-/cssom-0.3.8.tgz",
+ "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz",
"integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg=="
},
"cssstyle": {
@@ -5028,12 +5072,12 @@
},
"d3-color": {
"version": "1.4.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/d3-color/-/d3-color-1.4.1.tgz",
+ "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-1.4.1.tgz",
"integrity": "sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q=="
},
"d3-dispatch": {
"version": "1.0.6",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/d3-dispatch/-/d3-dispatch-1.0.6.tgz",
+ "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.6.tgz",
"integrity": "sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA=="
},
"d3-ease": {
@@ -5043,7 +5087,7 @@
},
"d3-interpolate": {
"version": "1.1.6",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/d3-interpolate/-/d3-interpolate-1.1.6.tgz",
+ "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.1.6.tgz",
"integrity": "sha512-mOnv5a+pZzkNIHtw/V6I+w9Lqm9L5bG3OTXPM5A+QO0yyVMQ4W1uZhR+VOJmazaOZXri2ppbiZ5BUNWT0pFM9A==",
"requires": {
"d3-color": "1"
@@ -5056,12 +5100,12 @@
},
"d3-timer": {
"version": "1.0.10",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/d3-timer/-/d3-timer-1.0.10.tgz",
+ "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-1.0.10.tgz",
"integrity": "sha512-B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw=="
},
"d3-transition": {
"version": "1.3.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/d3-transition/-/d3-transition-1.3.2.tgz",
+ "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-1.3.2.tgz",
"integrity": "sha512-sc0gRU4PFqZ47lPVHloMn9tlPcv8jxgOQg+0zjhfZXMQuvppjG6YuwdMBE0TuqCZjeJkLecku/l9R0JPcRhaDA==",
"requires": {
"d3-color": "1",
@@ -5088,7 +5132,7 @@
},
"data-urls": {
"version": "2.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/data-urls/-/data-urls-2.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz",
"integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==",
"requires": {
"abab": "^2.0.3",
@@ -5161,7 +5205,7 @@
},
"deep-equal": {
"version": "1.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/deep-equal/-/deep-equal-1.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz",
"integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==",
"requires": {
"is-arguments": "^1.0.4",
@@ -5174,7 +5218,7 @@
},
"deep-extend": {
"version": "0.6.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/deep-extend/-/deep-extend-0.6.0.tgz",
+ "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz",
"integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==",
"dev": true
},
@@ -5185,12 +5229,12 @@
},
"deepmerge": {
"version": "2.2.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/deepmerge/-/deepmerge-2.2.1.tgz",
+ "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-2.2.1.tgz",
"integrity": "sha512-R9hc1Xa/NOBi9WRVUWg19rl1UB7Tt4kuPd+thNJgFZoxXsTz7ncaPaeIm+40oSGuP33DfMb4sZt1QIGiJzC4EA=="
},
"default-gateway": {
"version": "4.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/default-gateway/-/default-gateway-4.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz",
"integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==",
"dev": true,
"requires": {
@@ -5200,7 +5244,7 @@
"dependencies": {
"execa": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/execa/-/execa-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz",
"integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==",
"dev": true,
"requires": {
@@ -5215,7 +5259,7 @@
},
"get-stream": {
"version": "4.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/get-stream/-/get-stream-4.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz",
"integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==",
"dev": true,
"requires": {
@@ -5253,7 +5297,7 @@
},
"define-property": {
"version": "2.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/define-property/-/define-property-2.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
"integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==",
"requires": {
"is-descriptor": "^1.0.2",
@@ -5262,7 +5306,7 @@
"dependencies": {
"is-accessor-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
"integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
"requires": {
"kind-of": "^6.0.0"
@@ -5270,7 +5314,7 @@
},
"is-data-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
"integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
"requires": {
"kind-of": "^6.0.0"
@@ -5278,7 +5322,7 @@
},
"is-descriptor": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
"integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
"requires": {
"is-accessor-descriptor": "^1.0.0",
@@ -5293,7 +5337,7 @@
},
"kind-of": {
"version": "6.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
}
}
@@ -5341,7 +5385,7 @@
},
"delegate": {
"version": "3.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/delegate/-/delegate-3.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz",
"integrity": "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw=="
},
"delegates": {
@@ -5353,12 +5397,11 @@
"depd": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
- "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
- "dev": true
+ "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="
},
"des.js": {
"version": "1.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/des.js/-/des.js-1.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz",
"integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==",
"dev": true,
"requires": {
@@ -5369,8 +5412,7 @@
"destroy": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
- "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
- "dev": true
+ "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="
},
"detect-browser": {
"version": "5.3.0",
@@ -5399,7 +5441,7 @@
},
"detect-port-alt": {
"version": "1.1.6",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/detect-port-alt/-/detect-port-alt-1.1.6.tgz",
+ "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz",
"integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==",
"requires": {
"address": "^1.0.1",
@@ -5408,12 +5450,12 @@
},
"diff": {
"version": "3.5.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/diff/-/diff-3.5.0.tgz",
+ "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz",
"integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA=="
},
"diffie-hellman": {
"version": "5.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz",
"integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==",
"dev": true,
"requires": {
@@ -5432,7 +5474,7 @@
},
"dir-glob": {
"version": "2.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/dir-glob/-/dir-glob-2.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz",
"integrity": "sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==",
"requires": {
"arrify": "^1.0.1",
@@ -5441,7 +5483,7 @@
"dependencies": {
"path-type": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/path-type/-/path-type-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz",
"integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==",
"requires": {
"pify": "^3.0.0"
@@ -5481,7 +5523,7 @@
},
"doctrine": {
"version": "2.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/doctrine/-/doctrine-2.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
"integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
"dev": true,
"requires": {
@@ -5495,7 +5537,7 @@
},
"dom-closest": {
"version": "0.2.0",
- "resolved": "https://registry.npmjs.org/dom-closest/-/dom-closest-0.2.0.tgz",
+ "resolved": "https://registry.npm.taobao.org/dom-closest/download/dom-closest-0.2.0.tgz",
"integrity": "sha1-69n5HRvyLo1vR3h2u80+yQIWwM8=",
"requires": {
"dom-matches": ">=1.0.1"
@@ -5503,7 +5545,7 @@
},
"dom-converter": {
"version": "0.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/dom-converter/-/dom-converter-0.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz",
"integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==",
"dev": true,
"requires": {
@@ -5512,7 +5554,7 @@
},
"dom-helpers": {
"version": "3.4.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/dom-helpers/-/dom-helpers-3.4.0.tgz",
+ "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz",
"integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==",
"requires": {
"@babel/runtime": "^7.1.2"
@@ -5540,7 +5582,7 @@
},
"dom-matches": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/dom-matches/-/dom-matches-2.0.0.tgz",
+ "resolved": "https://registry.npm.taobao.org/dom-matches/download/dom-matches-2.0.0.tgz",
"integrity": "sha1-0nKLQWqHUzmA6wibhI0lPPI6dYw="
},
"dom-scroll-into-view": {
@@ -5570,7 +5612,7 @@
},
"dom-walk": {
"version": "0.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/dom-walk/-/dom-walk-0.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz",
"integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w=="
},
"dom7": {
@@ -5583,7 +5625,7 @@
},
"domain-browser": {
"version": "1.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/domain-browser/-/domain-browser-1.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz",
"integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==",
"dev": true
},
@@ -5595,7 +5637,7 @@
},
"domexception": {
"version": "2.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/domexception/-/domexception-2.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz",
"integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==",
"requires": {
"webidl-conversions": "^5.0.0"
@@ -5603,7 +5645,7 @@
"dependencies": {
"webidl-conversions": {
"version": "5.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/webidl-conversions/-/webidl-conversions-5.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz",
"integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA=="
}
}
@@ -5672,7 +5714,7 @@
},
"dotignore": {
"version": "0.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/dotignore/-/dotignore-0.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/dotignore/-/dotignore-0.1.2.tgz",
"integrity": "sha512-UGGGWfSauusaVJC+8fgV+NVvBXkCTmVv7sk6nojDZZvuOUNGUy0Zk4UpHQD6EDjS0jpBwcACvH4eofvyzBcRDw==",
"requires": {
"minimatch": "^3.0.4"
@@ -5701,7 +5743,7 @@
},
"duplexify": {
"version": "3.7.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/duplexify/-/duplexify-3.7.1.tgz",
+ "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz",
"integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==",
"dev": true,
"requires": {
@@ -5741,12 +5783,11 @@
"ee-first": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
- "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
- "dev": true
+ "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="
},
"ejs": {
"version": "2.7.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/ejs/-/ejs-2.7.4.tgz",
+ "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz",
"integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==",
"dev": true
},
@@ -5790,14 +5831,13 @@
},
"emojis-list": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/emojis-list/-/emojis-list-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
"integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q=="
},
"encodeurl": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
- "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
- "dev": true
+ "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w=="
},
"encoding": {
"version": "0.1.13",
@@ -5809,7 +5849,7 @@
},
"end-of-stream": {
"version": "1.4.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/end-of-stream/-/end-of-stream-1.4.4.tgz",
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
"integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
"dev": true,
"requires": {
@@ -5841,7 +5881,7 @@
},
"enquire.js": {
"version": "2.1.6",
- "resolved": "https://registry.npmjs.org/enquire.js/-/enquire.js-2.1.6.tgz",
+ "resolved": "https://registry.npm.taobao.org/enquire.js/download/enquire.js-2.1.6.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fenquire.js%2Fdownload%2Fenquire.js-2.1.6.tgz",
"integrity": "sha1-PoeAybi4NQhMP2DhZtvDwqPImBQ="
},
"entities": {
@@ -5860,7 +5900,7 @@
},
"error-ex": {
"version": "1.3.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/error-ex/-/error-ex-1.3.2.tgz",
+ "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
"integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
"requires": {
"is-arrayish": "^0.2.1"
@@ -5925,7 +5965,7 @@
},
"es-to-primitive": {
"version": "1.2.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
+ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
"integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
"requires": {
"is-callable": "^1.1.4",
@@ -5955,7 +5995,7 @@
},
"es6-promise": {
"version": "4.2.8",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/es6-promise/-/es6-promise-4.2.8.tgz",
+ "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz",
"integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w=="
},
"es6-symbol": {
@@ -5976,8 +6016,7 @@
"escape-html": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
- "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
- "dev": true
+ "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
},
"escape-string-regexp": {
"version": "1.0.5",
@@ -5998,7 +6037,7 @@
},
"eslint": {
"version": "4.10.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/eslint/-/eslint-4.10.0.tgz",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-4.10.0.tgz",
"integrity": "sha512-MMVl8P/dYUFZEvolL8PYt7qc5LNdS2lwheq9BYa5Y07FblhcZqFyaUqlS8TW5QITGex21tV4Lk0a3fK8lsJIkA==",
"dev": true,
"requires": {
@@ -6067,7 +6106,7 @@
},
"chalk": {
"version": "2.4.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"requires": {
@@ -6191,7 +6230,7 @@
},
"eslint-config-react-app": {
"version": "2.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/eslint-config-react-app/-/eslint-config-react-app-2.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-2.1.0.tgz",
"integrity": "sha512-8QZrKWuHVC57Fmu+SsKAVxnI9LycZl7NFQ4H9L+oeISuCXhYdXqsOOIVSjQFW6JF5MXZLFE+21Syhd7mF1IRZQ==",
"dev": true
},
@@ -6225,7 +6264,7 @@
},
"eslint-loader": {
"version": "4.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/eslint-loader/-/eslint-loader-4.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/eslint-loader/-/eslint-loader-4.0.2.tgz",
"integrity": "sha512-EDpXor6lsjtTzZpLUn7KmXs02+nIjGcgees9BYjNkWra3jVq5vVa8IoCKgzT2M7dNNeoMBtaSG83Bd40N3poLw==",
"dev": true,
"requires": {
@@ -6249,7 +6288,7 @@
},
"find-up": {
"version": "4.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/find-up/-/find-up-4.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
"dev": true,
"requires": {
@@ -6259,7 +6298,7 @@
},
"fs-extra": {
"version": "8.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/fs-extra/-/fs-extra-8.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
"integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
"dev": true,
"requires": {
@@ -6296,7 +6335,7 @@
},
"locate-path": {
"version": "5.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/locate-path/-/locate-path-5.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
"integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"dev": true,
"requires": {
@@ -6305,7 +6344,7 @@
},
"make-dir": {
"version": "3.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/make-dir/-/make-dir-3.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
"integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
"dev": true,
"requires": {
@@ -6314,7 +6353,7 @@
},
"p-limit": {
"version": "2.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
"integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"dev": true,
"requires": {
@@ -6323,7 +6362,7 @@
},
"p-locate": {
"version": "4.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-locate/-/p-locate-4.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
"integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"dev": true,
"requires": {
@@ -6332,19 +6371,19 @@
},
"p-try": {
"version": "2.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-try/-/p-try-2.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
"integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
"dev": true
},
"path-exists": {
"version": "4.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/path-exists/-/path-exists-4.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
"dev": true
},
"pkg-dir": {
"version": "4.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
"integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
"dev": true,
"requires": {
@@ -6364,7 +6403,7 @@
},
"semver": {
"version": "6.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/semver/-/semver-6.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
"dev": true
}
@@ -6398,7 +6437,7 @@
},
"eslint-plugin-flowtype": {
"version": "2.39.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.39.1.tgz",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.39.1.tgz",
"integrity": "sha512-RiQv+7Z9QDJuzt+NO8sYgkLGT+h+WeCrxP7y8lI7wpU41x3x/2o3PGtHk9ck8QnA9/mlbNcy/hG0eKvmd7npaA==",
"dev": true,
"requires": {
@@ -6407,7 +6446,7 @@
},
"eslint-plugin-import": {
"version": "2.8.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.8.0.tgz",
"integrity": "sha512-Rf7dfKJxZ16QuTgVv1OYNxkZcsu/hULFnC+e+w0Gzi6jMC3guQoWQgxYxc54IDRinlb6/0v5z/PxxIKmVctN+g==",
"dev": true,
"requires": {
@@ -6485,7 +6524,7 @@
},
"eslint-plugin-jsx-a11y": {
"version": "5.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-5.1.1.tgz",
"integrity": "sha512-5I9SpoP7gT4wBFOtXT8/tXNPYohHBVfyVfO17vkbC7r9kEIxYJF12D3pKqhk8+xnk12rfxKClS3WCFpVckFTPQ==",
"dev": true,
"requires": {
@@ -6508,7 +6547,7 @@
},
"eslint-plugin-react": {
"version": "7.4.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/eslint-plugin-react/-/eslint-plugin-react-7.4.0.tgz",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.4.0.tgz",
"integrity": "sha512-tvjU9u3VqmW2vVuYnE8Qptq+6ji4JltjOjJ9u7VAOxVYkUkyBZWRvNYKbDv5fN+L6wiA+4we9+qQahZ0m63XEA==",
"dev": true,
"requires": {
@@ -6532,7 +6571,7 @@
},
"eslint-scope": {
"version": "3.7.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/eslint-scope/-/eslint-scope-3.7.3.tgz",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.3.tgz",
"integrity": "sha512-W+B0SvF4gamyCTmUc+uITPY0989iXVfKvhwtmJocTaYoc/3khEHmEmvfY/Gn9HA9VV75jrQECsHizkNw1b68FA==",
"dev": true,
"requires": {
@@ -6542,7 +6581,7 @@
},
"espree": {
"version": "3.5.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/espree/-/espree-3.5.4.tgz",
+ "resolved": "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz",
"integrity": "sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==",
"dev": true,
"requires": {
@@ -6560,7 +6599,7 @@
},
"esprima": {
"version": "4.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/esprima/-/esprima-4.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
},
"esquery": {
@@ -6599,7 +6638,7 @@
},
"estraverse": {
"version": "4.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/estraverse/-/estraverse-4.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
"integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw=="
},
"estree-walker": {
@@ -6609,14 +6648,13 @@
},
"esutils": {
"version": "2.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/esutils/-/esutils-2.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="
},
"etag": {
"version": "1.8.1",
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
- "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
- "dev": true
+ "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg=="
},
"event-emitter": {
"version": "0.3.5",
@@ -6634,7 +6672,7 @@
},
"eventlistener": {
"version": "0.0.1",
- "resolved": "https://registry.npmjs.org/eventlistener/-/eventlistener-0.0.1.tgz",
+ "resolved": "https://registry.npm.taobao.org/eventlistener/download/eventlistener-0.0.1.tgz",
"integrity": "sha1-7Suqu4UiJ68rz4iRUscsY8pTLrg="
},
"events": {
@@ -6651,7 +6689,7 @@
},
"evp_bytestokey": {
"version": "1.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz",
"integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==",
"dev": true,
"requires": {
@@ -6661,7 +6699,7 @@
},
"exec-sh": {
"version": "0.2.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/exec-sh/-/exec-sh-0.2.2.tgz",
+ "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.2.2.tgz",
"integrity": "sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw==",
"requires": {
"merge": "^1.2.0"
@@ -6724,7 +6762,6 @@
"version": "4.18.2",
"resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz",
"integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==",
- "dev": true,
"requires": {
"accepts": "~1.3.8",
"array-flatten": "1.1.1",
@@ -6762,26 +6799,22 @@
"array-flatten": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
- "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
- "dev": true
+ "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="
},
"cookie": {
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz",
- "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==",
- "dev": true
+ "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw=="
},
"path-to-regexp": {
"version": "0.1.7",
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
- "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==",
- "dev": true
+ "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ=="
},
"qs": {
"version": "6.11.0",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz",
"integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
- "dev": true,
"requires": {
"side-channel": "^1.0.4"
}
@@ -6805,7 +6838,7 @@
},
"extend": {
"version": "3.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/extend/-/extend-3.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
},
"extend-shallow": {
@@ -6819,7 +6852,7 @@
"dependencies": {
"is-extendable": {
"version": "1.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-extendable/-/is-extendable-1.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
"integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
"requires": {
"is-plain-object": "^2.0.4"
@@ -6867,12 +6900,12 @@
},
"fast-diff": {
"version": "1.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/fast-diff/-/fast-diff-1.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.2.tgz",
"integrity": "sha512-KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig=="
},
"fast-glob": {
"version": "2.2.7",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/fast-glob/-/fast-glob-2.2.7.tgz",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz",
"integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==",
"requires": {
"@mrmlnc/readdir-enhanced": "^2.2.1",
@@ -6895,7 +6928,7 @@
},
"braces": {
"version": "2.3.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/braces/-/braces-2.3.2.tgz",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
"integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
"requires": {
"arr-flatten": "^1.1.0",
@@ -6988,7 +7021,7 @@
},
"is-descriptor": {
"version": "0.1.6",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
"integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
"requires": {
"is-accessor-descriptor": "^0.1.6",
@@ -6998,14 +7031,14 @@
},
"kind-of": {
"version": "5.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-5.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
"integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
}
}
},
"extglob": {
"version": "2.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/extglob/-/extglob-2.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
"integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
"requires": {
"array-unique": "^0.3.2",
@@ -7078,7 +7111,7 @@
},
"is-accessor-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
"integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
"requires": {
"kind-of": "^6.0.0"
@@ -7086,7 +7119,7 @@
},
"is-data-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
"integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
"requires": {
"kind-of": "^6.0.0"
@@ -7094,7 +7127,7 @@
},
"is-descriptor": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
"integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
"requires": {
"is-accessor-descriptor": "^1.0.0",
@@ -7140,12 +7173,12 @@
},
"kind-of": {
"version": "6.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
},
"micromatch": {
"version": "3.1.10",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/micromatch/-/micromatch-3.1.10.tgz",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
"integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
"requires": {
"arr-diff": "^4.0.0",
@@ -7167,7 +7200,7 @@
},
"fast-json-stable-stringify": {
"version": "2.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
"integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
},
"fast-levenshtein": {
@@ -7264,12 +7297,12 @@
},
"fecha": {
"version": "2.3.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/fecha/-/fecha-2.3.3.tgz",
+ "resolved": "https://registry.npmjs.org/fecha/-/fecha-2.3.3.tgz",
"integrity": "sha512-lUGBnIamTAwk4znq5BcqsDaxSmZ9nDVJaij6NvRt/Tg4R69gERA+otPKbS86ROw9nxVMw2/mp1fnaiWqbs6Sdg=="
},
"figgy-pudding": {
"version": "3.5.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/figgy-pudding/-/figgy-pudding-3.5.2.tgz",
+ "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz",
"integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==",
"dev": true
},
@@ -7353,12 +7386,12 @@
},
"filesize": {
"version": "3.6.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/filesize/-/filesize-3.6.1.tgz",
+ "resolved": "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz",
"integrity": "sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg=="
},
"fill-range": {
"version": "2.2.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/fill-range/-/fill-range-2.2.4.tgz",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz",
"integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==",
"requires": {
"is-number": "^2.1.0",
@@ -7372,7 +7405,6 @@
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz",
"integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==",
- "dev": true,
"requires": {
"debug": "2.6.9",
"encodeurl": "~1.0.2",
@@ -7421,7 +7453,7 @@
},
"findup-sync": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/findup-sync/-/findup-sync-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz",
"integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==",
"dev": true,
"requires": {
@@ -7445,7 +7477,7 @@
},
"braces": {
"version": "2.3.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/braces/-/braces-2.3.2.tgz",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
"integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
"dev": true,
"requires": {
@@ -7547,7 +7579,7 @@
},
"is-descriptor": {
"version": "0.1.6",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
"integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
"dev": true,
"requires": {
@@ -7558,7 +7590,7 @@
},
"kind-of": {
"version": "5.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-5.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
"integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
"dev": true
}
@@ -7566,7 +7598,7 @@
},
"extglob": {
"version": "2.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/extglob/-/extglob-2.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
"integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
"dev": true,
"requires": {
@@ -7625,7 +7657,7 @@
},
"is-accessor-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
"integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
"dev": true,
"requires": {
@@ -7634,7 +7666,7 @@
},
"is-data-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
"integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
"dev": true,
"requires": {
@@ -7643,7 +7675,7 @@
},
"is-descriptor": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
"integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
"dev": true,
"requires": {
@@ -7695,13 +7727,13 @@
},
"kind-of": {
"version": "6.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
"dev": true
},
"micromatch": {
"version": "3.1.10",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/micromatch/-/micromatch-3.1.10.tgz",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
"integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
"dev": true,
"requires": {
@@ -7724,7 +7756,7 @@
},
"flat-cache": {
"version": "1.3.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/flat-cache/-/flat-cache-1.3.4.tgz",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.4.tgz",
"integrity": "sha512-VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg==",
"dev": true,
"requires": {
@@ -7747,7 +7779,7 @@
},
"flush-write-stream": {
"version": "1.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/flush-write-stream/-/flush-write-stream-1.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz",
"integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==",
"dev": true,
"requires": {
@@ -7819,7 +7851,7 @@
},
"for-each": {
"version": "0.3.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/for-each/-/for-each-0.3.3.tgz",
+ "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
"integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==",
"requires": {
"is-callable": "^1.1.3"
@@ -7845,7 +7877,7 @@
},
"fork-ts-checker-webpack-plugin": {
"version": "3.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-3.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-3.1.0.tgz",
"integrity": "sha512-6OkRfjuNMNqb14f01xokcWcKV5Ekknc2FvziNpcTYru+kxIYFA2MtuuBI19MHThZnjSBhoi35Dcq+I0oUkFjmQ==",
"requires": {
"babel-code-frame": "^6.22.0",
@@ -7870,7 +7902,7 @@
},
"braces": {
"version": "2.3.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/braces/-/braces-2.3.2.tgz",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
"integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
"requires": {
"arr-flatten": "^1.1.0",
@@ -7897,7 +7929,7 @@
},
"chalk": {
"version": "2.4.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"requires": {
"ansi-styles": "^3.2.1",
@@ -7973,7 +8005,7 @@
},
"is-descriptor": {
"version": "0.1.6",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
"integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
"requires": {
"is-accessor-descriptor": "^0.1.6",
@@ -7983,14 +8015,14 @@
},
"kind-of": {
"version": "5.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-5.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
"integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
}
}
},
"extglob": {
"version": "2.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/extglob/-/extglob-2.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
"integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
"requires": {
"array-unique": "^0.3.2",
@@ -8044,7 +8076,7 @@
},
"is-accessor-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
"integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
"requires": {
"kind-of": "^6.0.0"
@@ -8052,7 +8084,7 @@
},
"is-data-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
"integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
"requires": {
"kind-of": "^6.0.0"
@@ -8060,7 +8092,7 @@
},
"is-descriptor": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
"integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
"requires": {
"is-accessor-descriptor": "^1.0.0",
@@ -8093,12 +8125,12 @@
},
"kind-of": {
"version": "6.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
},
"micromatch": {
"version": "3.1.10",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/micromatch/-/micromatch-3.1.10.tgz",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
"integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
"requires": {
"arr-diff": "^4.0.0",
@@ -8120,7 +8152,7 @@
},
"form-data": {
"version": "2.3.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/form-data/-/form-data-2.3.3.tgz",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
"integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
"requires": {
"asynckit": "^0.4.0",
@@ -8131,8 +8163,7 @@
"forwarded": {
"version": "0.2.0",
"resolved": "http://173.15.15.82:8081/repository/npm-all/forwarded/-/forwarded-0.2.0.tgz",
- "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
- "dev": true
+ "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="
},
"fragment-cache": {
"version": "0.2.1",
@@ -8145,8 +8176,7 @@
"fresh": {
"version": "0.5.2",
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
- "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
- "dev": true
+ "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q=="
},
"from2": {
"version": "2.3.0",
@@ -8170,7 +8200,7 @@
},
"fs-minipass": {
"version": "2.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/fs-minipass/-/fs-minipass-2.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz",
"integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==",
"dev": true,
"requires": {
@@ -8212,7 +8242,7 @@
},
"fstream": {
"version": "1.0.12",
- "resolved": "https://registry.npmmirror.com/fstream/-/fstream-1.0.12.tgz",
+ "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz",
"integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==",
"dev": true,
"requires": {
@@ -8224,7 +8254,7 @@
},
"function-bind": {
"version": "1.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/function-bind/-/function-bind-1.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
},
"function.prototype.name": {
@@ -8267,7 +8297,7 @@
},
"gaze": {
"version": "1.1.3",
- "resolved": "https://registry.npmmirror.com/gaze/-/gaze-1.1.3.tgz",
+ "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz",
"integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==",
"dev": true,
"requires": {
@@ -8276,7 +8306,7 @@
},
"get-caller-file": {
"version": "1.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/get-caller-file/-/get-caller-file-1.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz",
"integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w=="
},
"get-intrinsic": {
@@ -8378,7 +8408,7 @@
},
"global-modules": {
"version": "2.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/global-modules/-/global-modules-2.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz",
"integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==",
"requires": {
"global-prefix": "^3.0.0"
@@ -8386,7 +8416,7 @@
},
"global-prefix": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/global-prefix/-/global-prefix-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz",
"integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==",
"requires": {
"ini": "^1.3.5",
@@ -8396,14 +8426,14 @@
"dependencies": {
"kind-of": {
"version": "6.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
}
}
},
"globals": {
"version": "9.18.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/globals/-/globals-9.18.0.tgz",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz",
"integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ=="
},
"globalthis": {
@@ -8416,7 +8446,7 @@
},
"globby": {
"version": "8.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/globby/-/globby-8.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/globby/-/globby-8.0.2.tgz",
"integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==",
"requires": {
"array-union": "^1.0.1",
@@ -8518,12 +8548,12 @@
},
"gud": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/gud/-/gud-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/gud/-/gud-1.0.0.tgz",
"integrity": "sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw=="
},
"gzip-size": {
"version": "5.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/gzip-size/-/gzip-size-5.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz",
"integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==",
"requires": {
"duplexer": "^0.1.1",
@@ -8532,19 +8562,19 @@
"dependencies": {
"pify": {
"version": "4.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/pify/-/pify-4.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
"integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g=="
}
}
},
"hammerjs": {
"version": "2.0.8",
- "resolved": "https://registry.npmjs.org/hammerjs/-/hammerjs-2.0.8.tgz",
+ "resolved": "https://registry.npm.taobao.org/hammerjs/download/hammerjs-2.0.8.tgz",
"integrity": "sha1-BO93hiz/K7edMPdpIJWTAiK/YPE="
},
"handle-thing": {
"version": "2.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/handle-thing/-/handle-thing-2.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz",
"integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==",
"dev": true
},
@@ -8575,7 +8605,7 @@
},
"happypack": {
"version": "5.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/happypack/-/happypack-5.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/happypack/-/happypack-5.0.1.tgz",
"integrity": "sha512-AzXVxLzX0mtv0T40Kic72rfcGK4Y2b/cDdtcyw+e+V/13ozl7x0+EZ4hvrL1rJ8MoefR9+FfUJQsK2irH0GWOw==",
"dev": true,
"requires": {
@@ -8593,7 +8623,7 @@
},
"big.js": {
"version": "3.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/big.js/-/big.js-3.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz",
"integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==",
"dev": true
},
@@ -8638,7 +8668,7 @@
},
"has": {
"version": "1.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/has/-/has-1.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
"integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
"requires": {
"function-bind": "^1.1.1"
@@ -8774,7 +8804,7 @@
},
"hash.js": {
"version": "1.1.7",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/hash.js/-/hash.js-1.1.7.tgz",
+ "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz",
"integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==",
"dev": true,
"requires": {
@@ -8784,19 +8814,19 @@
},
"he": {
"version": "1.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/he/-/he-1.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
"integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
"dev": true
},
"hex-color-regex": {
"version": "1.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/hex-color-regex/-/hex-color-regex-1.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz",
"integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==",
"dev": true
},
"history": {
"version": "4.10.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/history/-/history-4.10.1.tgz",
+ "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz",
"integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==",
"requires": {
"@babel/runtime": "^7.1.2",
@@ -8835,7 +8865,7 @@
},
"hoist-non-react-statics": {
"version": "3.3.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
+ "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz",
"integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==",
"requires": {
"react-is": "^16.7.0"
@@ -8852,7 +8882,7 @@
},
"homedir-polyfill": {
"version": "1.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz",
"integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==",
"dev": true,
"requires": {
@@ -8861,7 +8891,7 @@
},
"hoopy": {
"version": "0.1.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/hoopy/-/hoopy-0.1.4.tgz",
+ "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz",
"integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==",
"dev": true
},
@@ -8896,7 +8926,7 @@
},
"html-encoding-sniffer": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz",
"integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==",
"requires": {
"whatwg-encoding": "^1.0.1"
@@ -8925,7 +8955,7 @@
"dependencies": {
"commander": {
"version": "4.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/commander/-/commander-4.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
"integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
"dev": true
}
@@ -8983,7 +9013,6 @@
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
"integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
- "dev": true,
"requires": {
"depd": "2.0.0",
"inherits": "2.0.4",
@@ -9044,7 +9073,7 @@
},
"http-proxy-middleware": {
"version": "0.19.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz",
+ "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz",
"integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==",
"dev": true,
"requires": {
@@ -9068,7 +9097,7 @@
},
"braces": {
"version": "2.3.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/braces/-/braces-2.3.2.tgz",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
"integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
"dev": true,
"requires": {
@@ -9170,7 +9199,7 @@
},
"is-descriptor": {
"version": "0.1.6",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
"integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
"dev": true,
"requires": {
@@ -9181,7 +9210,7 @@
},
"kind-of": {
"version": "5.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-5.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
"integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
"dev": true
}
@@ -9189,7 +9218,7 @@
},
"extglob": {
"version": "2.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/extglob/-/extglob-2.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
"integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
"dev": true,
"requires": {
@@ -9248,7 +9277,7 @@
},
"is-accessor-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
"integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
"dev": true,
"requires": {
@@ -9257,7 +9286,7 @@
},
"is-data-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
"integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
"dev": true,
"requires": {
@@ -9266,7 +9295,7 @@
},
"is-descriptor": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
"integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
"dev": true,
"requires": {
@@ -9318,13 +9347,13 @@
},
"kind-of": {
"version": "6.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
"dev": true
},
"micromatch": {
"version": "3.1.10",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/micromatch/-/micromatch-3.1.10.tgz",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
"integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
"dev": true,
"requires": {
@@ -9423,7 +9452,7 @@
},
"icss-utils": {
"version": "4.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/icss-utils/-/icss-utils-4.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz",
"integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==",
"dev": true,
"requires": {
@@ -9456,7 +9485,7 @@
},
"ignore": {
"version": "3.3.10",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/ignore/-/ignore-3.3.10.tgz",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz",
"integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug=="
},
"image-size": {
@@ -9472,12 +9501,12 @@
},
"immer": {
"version": "1.10.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/immer/-/immer-1.10.0.tgz",
+ "resolved": "https://registry.npmjs.org/immer/-/immer-1.10.0.tgz",
"integrity": "sha512-O3sR1/opvCDGLEVcvrGTMtLac8GJ5IwZC4puPrLuRj3l7ICKvkmA0vGuU9OW8mV9WIBRnaxp5GJh9IEAaNOoYg=="
},
"immutability-helper": {
"version": "2.9.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/immutability-helper/-/immutability-helper-2.9.1.tgz",
+ "resolved": "https://registry.npmjs.org/immutability-helper/-/immutability-helper-2.9.1.tgz",
"integrity": "sha512-r/RmRG8xO06s/k+PIaif2r5rGc3j4Yhc01jSBfwPCXDLYZwp/yxralI37Df1mwmuzcCsen/E/ITKcTEvc1PQmQ==",
"requires": {
"invariant": "^2.2.0"
@@ -9485,7 +9514,7 @@
},
"immutable": {
"version": "3.7.6",
- "resolved": "https://registry.npmjs.org/immutable/-/immutable-3.7.6.tgz",
+ "resolved": "https://registry.npm.taobao.org/immutable/download/immutable-3.7.6.tgz",
"integrity": "sha1-E7TTyxK++hVIKib+Gy665kAHHks="
},
"import-fresh": {
@@ -9523,7 +9552,7 @@
},
"import-local": {
"version": "2.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/import-local/-/import-local-2.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz",
"integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==",
"dev": true,
"requires": {
@@ -9533,7 +9562,7 @@
"dependencies": {
"find-up": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/find-up/-/find-up-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
"integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
"dev": true,
"requires": {
@@ -9542,7 +9571,7 @@
},
"locate-path": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/locate-path/-/locate-path-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
"integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
"dev": true,
"requires": {
@@ -9552,7 +9581,7 @@
},
"p-limit": {
"version": "2.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
"integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"dev": true,
"requires": {
@@ -9561,7 +9590,7 @@
},
"p-locate": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-locate/-/p-locate-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
"integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
"dev": true,
"requires": {
@@ -9570,13 +9599,13 @@
},
"p-try": {
"version": "2.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-try/-/p-try-2.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
"integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
"dev": true
},
"pkg-dir": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/pkg-dir/-/pkg-dir-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz",
"integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==",
"dev": true,
"requires": {
@@ -9593,13 +9622,13 @@
},
"in-publish": {
"version": "2.0.1",
- "resolved": "https://registry.npmmirror.com/in-publish/-/in-publish-2.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.1.tgz",
"integrity": "sha512-oDM0kUSNFC31ShNxHKUyfZKy8ZeXZBWMjMdZHKLOk13uvT27VTL/QzRGfRUcevJhpkZAvlhPYuXkF7eNWrtyxQ==",
"dev": true
},
"indefinite-observable": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/indefinite-observable/-/indefinite-observable-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/indefinite-observable/-/indefinite-observable-1.0.2.tgz",
"integrity": "sha512-Mps0898zEduHyPhb7UCgNmfzlqNZknVmaFz5qzr0mm04YQ5FGLhAyK/dJ+NaRxGyR6juQXIxh5Ev0xx+qq0nYA==",
"requires": {
"symbol-observable": "1.2.0"
@@ -9622,7 +9651,7 @@
},
"infer-owner": {
"version": "1.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/infer-owner/-/infer-owner-1.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz",
"integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==",
"dev": true
},
@@ -9637,7 +9666,7 @@
},
"inherits": {
"version": "2.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/inherits/-/inherits-2.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
},
"ini": {
@@ -9728,12 +9757,12 @@
},
"install": {
"version": "0.12.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/install/-/install-0.12.2.tgz",
+ "resolved": "https://registry.npmjs.org/install/-/install-0.12.2.tgz",
"integrity": "sha512-+7thTb4Rpvs9mnlhHKGZFJbGOO6kyMgy+gg0sgM5vFzIFK0wrCYXqdlaM71Bi289DTuPHf61puMFsaZBcwDIrg=="
},
"internal-ip": {
"version": "4.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/internal-ip/-/internal-ip-4.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz",
"integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==",
"dev": true,
"requires": {
@@ -9764,7 +9793,7 @@
},
"invariant": {
"version": "2.2.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/invariant/-/invariant-2.2.4.tgz",
+ "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
"integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
"requires": {
"loose-envify": "^1.0.0"
@@ -9789,9 +9818,8 @@
},
"ipaddr.js": {
"version": "1.9.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
- "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
- "dev": true
+ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
+ "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="
},
"is-absolute-url": {
"version": "2.1.0",
@@ -9876,7 +9904,7 @@
},
"is-ci": {
"version": "1.2.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-ci/-/is-ci-1.2.1.tgz",
+ "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz",
"integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==",
"requires": {
"ci-info": "^1.5.0"
@@ -9922,7 +9950,7 @@
},
"is-descriptor": {
"version": "0.1.6",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
"integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
"requires": {
"is-accessor-descriptor": "^0.1.6",
@@ -9932,7 +9960,7 @@
"dependencies": {
"kind-of": {
"version": "5.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-5.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
"integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
}
}
@@ -9973,7 +10001,7 @@
},
"is-finite": {
"version": "1.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-finite/-/is-finite-1.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz",
"integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w=="
},
"is-fullwidth-code-point": {
@@ -9986,7 +10014,7 @@
},
"is-function": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-function/-/is-function-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/is-function/-/is-function-1.0.2.tgz",
"integrity": "sha512-lw7DUp0aWXYg+CBCN+JKkcE0Q2RayZnSvnZBlwgxHBQhqt5pZNVy4Ri7H9GmmXkdu7LUthszM+Tor1u/2iBcpQ=="
},
"is-glob": {
@@ -10063,7 +10091,7 @@
},
"is-path-in-cwd": {
"version": "1.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz",
"integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==",
"dev": true,
"requires": {
@@ -10086,7 +10114,7 @@
},
"is-plain-object": {
"version": "2.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-plain-object/-/is-plain-object-2.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
"integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
"requires": {
"isobject": "^3.0.1"
@@ -10131,19 +10159,19 @@
},
"is-resolvable": {
"version": "1.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-resolvable/-/is-resolvable-1.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz",
"integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==",
"dev": true
},
"is-retry-allowed": {
"version": "1.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz",
"integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==",
"dev": true
},
"is-root": {
"version": "2.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-root/-/is-root-2.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz",
"integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg=="
},
"is-shared-array-buffer": {
@@ -10217,7 +10245,7 @@
},
"is-windows": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-windows/-/is-windows-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
"integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA=="
},
"is-wsl": {
@@ -10259,7 +10287,7 @@
},
"istanbul-api": {
"version": "1.3.7",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/istanbul-api/-/istanbul-api-1.3.7.tgz",
+ "resolved": "https://registry.npmjs.org/istanbul-api/-/istanbul-api-1.3.7.tgz",
"integrity": "sha512-4/ApBnMVeEPG3EkSzcw25wDe4N66wxwn+KKn6b47vyek8Xb3NBAcg4xfuQbS7BqcZuTX4wxfD5lVagdggR3gyA==",
"requires": {
"async": "^2.1.4",
@@ -10277,12 +10305,12 @@
},
"istanbul-lib-coverage": {
"version": "1.2.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-1.2.1.tgz",
"integrity": "sha512-PzITeunAgyGbtY1ibVIUiV679EFChHjoMNRibEIobvmrCRaIgwLxNucOSimtNWUhEib/oO7QY2imD75JVgCJWQ=="
},
"istanbul-lib-hook": {
"version": "1.2.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/istanbul-lib-hook/-/istanbul-lib-hook-1.2.2.tgz",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-1.2.2.tgz",
"integrity": "sha512-/Jmq7Y1VeHnZEQ3TL10VHyb564mn6VrQXHchON9Jf/AEcmQ3ZIiyD1BVzNOKTZf/G3gE+kiGK6SmpF9y3qGPLw==",
"requires": {
"append-transform": "^0.4.0"
@@ -10290,7 +10318,7 @@
},
"istanbul-lib-instrument": {
"version": "1.10.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.10.2.tgz",
"integrity": "sha512-aWHxfxDqvh/ZlxR8BBaEPVSWDPUkGD63VjGQn3jcw8jCp7sHEMKcrj4xfJn/ABzdMEHiQNyvDQhqm5o8+SQg7A==",
"requires": {
"babel-generator": "^6.18.0",
@@ -10304,7 +10332,7 @@
},
"istanbul-lib-report": {
"version": "1.1.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/istanbul-lib-report/-/istanbul-lib-report-1.1.5.tgz",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-1.1.5.tgz",
"integrity": "sha512-UsYfRMoi6QO/doUshYNqcKJqVmFe9w51GZz8BS3WB0lYxAllQYklka2wP9+dGZeHYaWIdcXUx8JGdbqaoXRXzw==",
"requires": {
"istanbul-lib-coverage": "^1.2.1",
@@ -10330,7 +10358,7 @@
},
"istanbul-lib-source-maps": {
"version": "1.2.6",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.6.tgz",
+ "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-1.2.6.tgz",
"integrity": "sha512-TtbsY5GIHgbMsMiRw35YBHGpZ1DVFEO19vxxeiDMYaeOFOCzfnYVxvl6pOUIZR4dtPhAGpSMup8OyF8ubsaqEg==",
"requires": {
"debug": "^3.1.0",
@@ -10362,7 +10390,7 @@
},
"istanbul-reports": {
"version": "1.5.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/istanbul-reports/-/istanbul-reports-1.5.1.tgz",
+ "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-1.5.1.tgz",
"integrity": "sha512-+cfoZ0UXzWjhAdzosCPP3AN8vvef8XDkWtTfgaN+7L3YTpNYITnCaEkceo5SEYy644VkHka/P1FvkWvrG/rrJw==",
"requires": {
"handlebars": "^4.0.3"
@@ -10509,7 +10537,7 @@
},
"jest-haste-map": {
"version": "20.0.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/jest-haste-map/-/jest-haste-map-20.0.5.tgz",
+ "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-20.0.5.tgz",
"integrity": "sha512-0IKAQjUvuZjMCNi/0VNQQF74/H9KB67hsHJqGiwTWQC6XO5Azs7kLWm+6Q/dwuhvDUvABDOBMFK2/FwZ3sZ07Q==",
"requires": {
"fb-watchman": "^2.0.0",
@@ -10708,7 +10736,7 @@
"dependencies": {
"has-flag": {
"version": "4.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/has-flag/-/has-flag-4.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
"dev": true
},
@@ -10735,7 +10763,7 @@
},
"js-tokens": {
"version": "4.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/js-tokens/-/js-tokens-4.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
},
"js-yaml": {
@@ -10790,7 +10818,7 @@
},
"json-parse-better-errors": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
"integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
"dev": true
},
@@ -10801,7 +10829,7 @@
},
"json-schema-traverse": {
"version": "0.4.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
},
"json-stable-stringify": {
@@ -10867,7 +10895,7 @@
},
"jss": {
"version": "9.8.7",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/jss/-/jss-9.8.7.tgz",
+ "resolved": "https://registry.npmjs.org/jss/-/jss-9.8.7.tgz",
"integrity": "sha512-awj3XRZYxbrmmrx9LUSj5pXSUfm12m8xzi/VKeqI1ZwWBtQ0kVPTs3vYs32t4rFw83CgFDukA8wKzOE9sMQnoQ==",
"requires": {
"is-in-browser": "^1.1.3",
@@ -10887,7 +10915,7 @@
},
"jss-camel-case": {
"version": "6.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-camel-case/-/jss-camel-case-6.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/jss-camel-case/-/jss-camel-case-6.1.0.tgz",
"integrity": "sha512-HPF2Q7wmNW1t79mCqSeU2vdd/vFFGpkazwvfHMOhPlMgXrJDzdj9viA2SaHk9ZbD5pfL63a8ylp4++irYbbzMQ==",
"requires": {
"hyphenate-style-name": "^1.0.2"
@@ -10895,7 +10923,7 @@
},
"jss-compose": {
"version": "5.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-compose/-/jss-compose-5.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/jss-compose/-/jss-compose-5.0.0.tgz",
"integrity": "sha512-YofRYuiA0+VbeOw0VjgkyO380sA4+TWDrW52nSluD9n+1FWOlDzNbgpZ/Sb3Y46+DcAbOS21W5jo6SAqUEiuwA==",
"requires": {
"warning": "^3.0.0"
@@ -10913,17 +10941,17 @@
},
"jss-default-unit": {
"version": "8.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-default-unit/-/jss-default-unit-8.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/jss-default-unit/-/jss-default-unit-8.0.2.tgz",
"integrity": "sha512-WxNHrF/18CdoAGw2H0FqOEvJdREXVXLazn7PQYU7V6/BWkCV0GkmWsppNiExdw8dP4TU1ma1dT9zBNJ95feLmg=="
},
"jss-expand": {
"version": "5.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-expand/-/jss-expand-5.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/jss-expand/-/jss-expand-5.3.0.tgz",
"integrity": "sha512-NiM4TbDVE0ykXSAw6dfFmB1LIqXP/jdd0ZMnlvlGgEMkMt+weJIl8Ynq1DsuBY9WwkNyzWktdqcEW2VN0RAtQg=="
},
"jss-extend": {
"version": "6.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-extend/-/jss-extend-6.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/jss-extend/-/jss-extend-6.2.0.tgz",
"integrity": "sha512-YszrmcB6o9HOsKPszK7NeDBNNjVyiW864jfoiHoMlgMIg2qlxKw70axZHqgczXHDcoyi/0/ikP1XaHDPRvYtEA==",
"requires": {
"warning": "^3.0.0"
@@ -10941,12 +10969,12 @@
},
"jss-global": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-global/-/jss-global-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/jss-global/-/jss-global-3.0.0.tgz",
"integrity": "sha512-wxYn7vL+TImyQYGAfdplg7yaxnPQ9RaXY/cIA8hawaVnmmWxDHzBK32u1y+RAvWboa3lW83ya3nVZ/C+jyjZ5Q=="
},
"jss-nested": {
"version": "6.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-nested/-/jss-nested-6.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/jss-nested/-/jss-nested-6.0.1.tgz",
"integrity": "sha512-rn964TralHOZxoyEgeq3hXY8hyuCElnvQoVrQwKHVmu55VRDd6IqExAx9be5HgK0yN/+hQdgAXQl/GUrBbbSTA==",
"requires": {
"warning": "^3.0.0"
@@ -10964,7 +10992,7 @@
},
"jss-preset-default": {
"version": "4.5.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-preset-default/-/jss-preset-default-4.5.0.tgz",
+ "resolved": "https://registry.npmjs.org/jss-preset-default/-/jss-preset-default-4.5.0.tgz",
"integrity": "sha512-qZbpRVtHT7hBPpZEBPFfafZKWmq3tA/An5RNqywDsZQGrlinIF/mGD9lmj6jGqu8GrED2SMHZ3pPKLmjCZoiaQ==",
"requires": {
"jss-camel-case": "^6.1.0",
@@ -10981,12 +11009,12 @@
},
"jss-props-sort": {
"version": "6.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-props-sort/-/jss-props-sort-6.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/jss-props-sort/-/jss-props-sort-6.0.0.tgz",
"integrity": "sha512-E89UDcrphmI0LzmvYk25Hp4aE5ZBsXqMWlkFXS0EtPkunJkRr+WXdCNYbXbksIPnKlBenGB9OxzQY+mVc70S+g=="
},
"jss-template": {
"version": "1.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-template/-/jss-template-1.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/jss-template/-/jss-template-1.0.1.tgz",
"integrity": "sha512-m5BqEWha17fmIVXm1z8xbJhY6GFJxNB9H68GVnCWPyGYfxiAgY9WTQyvDAVj+pYRgrXSOfN5V1T4+SzN1sJTeg==",
"requires": {
"warning": "^3.0.0"
@@ -11004,7 +11032,7 @@
},
"jss-vendor-prefixer": {
"version": "7.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/jss-vendor-prefixer/-/jss-vendor-prefixer-7.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/jss-vendor-prefixer/-/jss-vendor-prefixer-7.0.0.tgz",
"integrity": "sha512-Agd+FKmvsI0HLcYXkvy8GYOw3AAASBUpsmIRvVQheps+JWaN892uFOInTr0DRydwaD91vSSUCU4NssschvF7MA==",
"requires": {
"css-vendor": "^0.3.8"
@@ -11018,7 +11046,7 @@
},
"katex": {
"version": "0.11.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/katex/-/katex-0.11.1.tgz",
+ "resolved": "https://registry.npmjs.org/katex/-/katex-0.11.1.tgz",
"integrity": "sha512-5oANDICCTX0NqYIyAiFCCwjQ7ERu3DQG2JFHLbYOf+fXaMoH8eg/zOq5WSYJsKMi/QebW+Eh3gSM+oss1H/bww==",
"requires": {
"commander": "^2.19.0"
@@ -11031,7 +11059,7 @@
},
"killable": {
"version": "1.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/killable/-/killable-1.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz",
"integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==",
"dev": true
},
@@ -11045,7 +11073,7 @@
},
"last-call-webpack-plugin": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz",
"integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==",
"dev": true,
"requires": {
@@ -11151,7 +11179,7 @@
},
"loader-runner": {
"version": "2.4.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/loader-runner/-/loader-runner-2.4.0.tgz",
+ "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz",
"integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==",
"dev": true
},
@@ -11255,7 +11283,7 @@
},
"lodash.template": {
"version": "4.5.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/lodash.template/-/lodash.template-4.5.0.tgz",
+ "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz",
"integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==",
"dev": true,
"requires": {
@@ -11265,7 +11293,7 @@
},
"lodash.templatesettings": {
"version": "4.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz",
"integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==",
"dev": true,
"requires": {
@@ -11274,7 +11302,7 @@
},
"lodash.throttle": {
"version": "4.1.1",
- "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz",
+ "resolved": "https://registry.npm.taobao.org/lodash.throttle/download/lodash.throttle-4.1.1.tgz",
"integrity": "sha1-wj6RtxAkKscMN/HhzaknTMOb8vQ="
},
"lodash.toarray": {
@@ -11300,7 +11328,7 @@
},
"loose-envify": {
"version": "1.4.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/loose-envify/-/loose-envify-1.4.0.tgz",
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
"integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
"requires": {
"js-tokens": "^3.0.0 || ^4.0.0"
@@ -11335,13 +11363,13 @@
},
"lowercase-keys": {
"version": "1.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz",
"integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==",
"dev": true
},
"lru-cache": {
"version": "4.1.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/lru-cache/-/lru-cache-4.1.5.tgz",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz",
"integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==",
"dev": true,
"requires": {
@@ -11399,12 +11427,12 @@
},
"material-colors": {
"version": "1.2.6",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/material-colors/-/material-colors-1.2.6.tgz",
+ "resolved": "https://registry.npmjs.org/material-colors/-/material-colors-1.2.6.tgz",
"integrity": "sha512-6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg=="
},
"material-ui": {
"version": "1.0.0-beta.46",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/material-ui/-/material-ui-1.0.0-beta.46.tgz",
+ "resolved": "https://registry.npmjs.org/material-ui/-/material-ui-1.0.0-beta.46.tgz",
"integrity": "sha512-hg4dtIyUvbAu2lCXIRjzz3fR9YchFo8gLuJyj7rFhA6NQPiXVAhaYM/dCp+dtQelZymBE1MfctjDTCbborDC9Q==",
"requires": {
"@types/jss": "^9.3.0",
@@ -11439,7 +11467,7 @@
"dependencies": {
"hoist-non-react-statics": {
"version": "2.5.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz",
+ "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz",
"integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw=="
},
"warning": {
@@ -11454,7 +11482,7 @@
},
"math-random": {
"version": "1.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/math-random/-/math-random-1.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz",
"integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A=="
},
"md5": {
@@ -11469,7 +11497,7 @@
},
"md5.js": {
"version": "1.3.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/md5.js/-/md5.js-1.3.5.tgz",
+ "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz",
"integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==",
"dev": true,
"requires": {
@@ -11480,15 +11508,14 @@
},
"mdn-data": {
"version": "2.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/mdn-data/-/mdn-data-2.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz",
"integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==",
"dev": true
},
"media-typer": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
- "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
- "dev": true
+ "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ=="
},
"memoize-one": {
"version": "5.2.1",
@@ -11525,12 +11552,12 @@
},
"merge": {
"version": "1.2.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/merge/-/merge-1.2.1.tgz",
+ "resolved": "https://registry.npmjs.org/merge/-/merge-1.2.1.tgz",
"integrity": "sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ=="
},
"merge-anything": {
"version": "2.4.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/merge-anything/-/merge-anything-2.4.4.tgz",
+ "resolved": "https://registry.npmjs.org/merge-anything/-/merge-anything-2.4.4.tgz",
"integrity": "sha512-l5XlriUDJKQT12bH+rVhAHjwIuXWdAIecGwsYjv2LJo+dA1AeRTmeQS+3QBpO6lEthBMDi2IUMpLC1yyRvGlwQ==",
"requires": {
"is-what": "^3.3.1"
@@ -11539,12 +11566,11 @@
"merge-descriptors": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
- "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==",
- "dev": true
+ "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w=="
},
"merge-stream": {
"version": "2.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/merge-stream/-/merge-stream-2.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
"integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
"dev": true
},
@@ -11556,12 +11582,11 @@
"methods": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
- "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
- "dev": true
+ "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w=="
},
"microevent.ts": {
"version": "0.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/microevent.ts/-/microevent.ts-0.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz",
"integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g=="
},
"micromatch": {
@@ -11586,7 +11611,7 @@
},
"miller-rabin": {
"version": "4.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/miller-rabin/-/miller-rabin-4.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz",
"integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==",
"dev": true,
"requires": {
@@ -11604,7 +11629,7 @@
},
"mime": {
"version": "1.6.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/mime/-/mime-1.6.0.tgz",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="
},
"mime-db": {
@@ -11630,7 +11655,7 @@
},
"mimic-fn": {
"version": "1.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/mimic-fn/-/mimic-fn-1.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz",
"integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ=="
},
"min-document": {
@@ -11643,7 +11668,7 @@
},
"mini-css-extract-plugin": {
"version": "0.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.9.0.tgz",
"integrity": "sha512-lp3GeY7ygcgAmVIcRPBVhIkf8Us7FZjA+ILpal44qLdSu11wmjKQ3d9k15lfD7pO4esu9eUIAW7qiYIBppv40A==",
"requires": {
"loader-utils": "^1.1.0",
@@ -11654,7 +11679,7 @@
},
"mini-store": {
"version": "2.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/mini-store/-/mini-store-2.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/mini-store/-/mini-store-2.0.0.tgz",
"integrity": "sha512-EG0CuwpQmX+XL4QVS0kxNwHW5ftSbhygu1qxQH0pipugjnPkbvkalCdQbEihMwtQY6d3MTN+MS0q+aurs+RfLQ==",
"requires": {
"hoist-non-react-statics": "^2.3.1",
@@ -11665,14 +11690,14 @@
"dependencies": {
"hoist-non-react-statics": {
"version": "2.5.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz",
+ "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz",
"integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw=="
}
}
},
"minimalistic-assert": {
"version": "1.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz",
"integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==",
"dev": true
},
@@ -11714,7 +11739,7 @@
},
"minipass-collect": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/minipass-collect/-/minipass-collect-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz",
"integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==",
"dev": true,
"requires": {
@@ -11723,7 +11748,7 @@
},
"minipass-flush": {
"version": "1.0.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/minipass-flush/-/minipass-flush-1.0.5.tgz",
+ "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz",
"integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
"dev": true,
"requires": {
@@ -11741,7 +11766,7 @@
},
"mississippi": {
"version": "2.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/mississippi/-/mississippi-2.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-2.0.0.tgz",
"integrity": "sha512-zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw==",
"dev": true,
"requires": {
@@ -11759,7 +11784,7 @@
},
"mixin-deep": {
"version": "1.3.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/mixin-deep/-/mixin-deep-1.3.2.tgz",
+ "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz",
"integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==",
"requires": {
"for-in": "^1.0.2",
@@ -11768,7 +11793,7 @@
"dependencies": {
"is-extendable": {
"version": "1.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-extendable/-/is-extendable-1.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz",
"integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==",
"requires": {
"is-plain-object": "^2.0.4"
@@ -11786,7 +11811,7 @@
},
"mockjs": {
"version": "1.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/mockjs/-/mockjs-1.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/mockjs/-/mockjs-1.1.0.tgz",
"integrity": "sha512-eQsKcWzIaZzEZ07NuEyO4Nw65g0hdWAyurVol1IPl1gahRwY+svqzfgfey8U8dahLwG44d6/RwEzuK52rSa/JQ==",
"dev": true,
"requires": {
@@ -11800,7 +11825,7 @@
},
"monaco-editor": {
"version": "0.20.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/monaco-editor/-/monaco-editor-0.20.0.tgz",
+ "resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.20.0.tgz",
"integrity": "sha512-hkvf4EtPJRMQlPC3UbMoRs0vTAFAYdzFQ+gpMb8A+9znae1c43q8Mab9iVsgTcg/4PNiLGGn3SlDIa8uvK1FIQ=="
},
"monaco-editor-webpack-plugin": {
@@ -11832,7 +11857,7 @@
},
"multicast-dns": {
"version": "6.2.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/multicast-dns/-/multicast-dns-6.2.3.tgz",
+ "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz",
"integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==",
"dev": true,
"requires": {
@@ -11873,7 +11898,7 @@
},
"nanomatch": {
"version": "1.2.13",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/nanomatch/-/nanomatch-1.2.13.tgz",
+ "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz",
"integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==",
"requires": {
"arr-diff": "^4.0.0",
@@ -11901,7 +11926,7 @@
},
"kind-of": {
"version": "6.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
}
}
@@ -11920,8 +11945,7 @@
"negotiator": {
"version": "0.6.3",
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
- "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
- "dev": true
+ "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="
},
"neo-async": {
"version": "2.6.2",
@@ -11935,7 +11959,7 @@
},
"nice-try": {
"version": "1.0.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/nice-try/-/nice-try-1.0.5.tgz",
+ "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
"integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ=="
},
"no-case": {
@@ -11958,7 +11982,7 @@
},
"node-fetch": {
"version": "1.7.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/node-fetch/-/node-fetch-1.7.3.tgz",
+ "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz",
"integrity": "sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==",
"requires": {
"encoding": "^0.1.11",
@@ -11973,7 +11997,7 @@
},
"node-gyp": {
"version": "3.8.0",
- "resolved": "https://registry.npmmirror.com/node-gyp/-/node-gyp-3.8.0.tgz",
+ "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz",
"integrity": "sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==",
"dev": true,
"requires": {
@@ -12006,7 +12030,7 @@
},
"node-libs-browser": {
"version": "2.2.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/node-libs-browser/-/node-libs-browser-2.2.1.tgz",
+ "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz",
"integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==",
"dev": true,
"requires": {
@@ -12114,7 +12138,7 @@
},
"normalize-package-data": {
"version": "2.5.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
+ "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz",
"integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==",
"requires": {
"hosted-git-info": "^2.1.4",
@@ -12138,7 +12162,7 @@
},
"normalize-scroll-left": {
"version": "0.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/normalize-scroll-left/-/normalize-scroll-left-0.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/normalize-scroll-left/-/normalize-scroll-left-0.1.2.tgz",
"integrity": "sha512-F9YMRls0zCF6BFIE2YnXDRpHPpfd91nOIaNdDgrx5YMoPLo8Wqj+6jNXHQsYBavJeXP4ww8HCt0xQAKc5qk2Fg=="
},
"normalize-url": {
@@ -12163,7 +12187,7 @@
},
"npmlog": {
"version": "4.1.2",
- "resolved": "https://registry.npmmirror.com/npmlog/-/npmlog-4.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz",
"integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==",
"dev": true,
"requires": {
@@ -12204,7 +12228,7 @@
},
"nwmatcher": {
"version": "1.4.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/nwmatcher/-/nwmatcher-1.4.4.tgz",
+ "resolved": "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.4.4.tgz",
"integrity": "sha512-3iuY4N5dhgMpCUrOVnuAdGrgxVqV2cJpM+XNccjR2DKOB1RUP0aA+wGXEiNziG/UKboFyGBIoKOaNlJxx8bciQ=="
},
"nwsapi": {
@@ -12214,7 +12238,7 @@
},
"oauth-sign": {
"version": "0.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/oauth-sign/-/oauth-sign-0.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
"integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="
},
"object-assign": {
@@ -12264,7 +12288,7 @@
},
"object-keys": {
"version": "1.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/object-keys/-/object-keys-1.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
"integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="
},
"object-visit": {
@@ -12353,7 +12377,7 @@
},
"obuf": {
"version": "1.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/obuf/-/obuf-1.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz",
"integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==",
"dev": true
},
@@ -12369,14 +12393,13 @@
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
- "dev": true,
"requires": {
"ee-first": "1.1.1"
}
},
"on-headers": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/on-headers/-/on-headers-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz",
"integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==",
"dev": true
},
@@ -12423,7 +12446,7 @@
},
"opn": {
"version": "5.5.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/opn/-/opn-5.5.0.tgz",
+ "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz",
"integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==",
"dev": true,
"requires": {
@@ -12442,7 +12465,7 @@
},
"optionator": {
"version": "0.8.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/optionator/-/optionator-0.8.3.tgz",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz",
"integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==",
"requires": {
"deep-is": "~0.1.3",
@@ -12479,7 +12502,7 @@
},
"osenv": {
"version": "0.1.5",
- "resolved": "https://registry.npmmirror.com/osenv/-/osenv-0.1.5.tgz",
+ "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz",
"integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==",
"dev": true,
"requires": {
@@ -12490,7 +12513,7 @@
"output-file-sync": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/output-file-sync/-/output-file-sync-1.1.2.tgz",
- "integrity": "sha1-0KM+7+YaIF+suQCS6CZZjVJFznY=",
+ "integrity": "sha512-uQLlclru4xpCi+tfs80l3QF24KL81X57ELNMy7W/dox+JTtxUf1bLyQ8968fFCmSqqbokjW0kn+WBIlO+rSkNg==",
"dev": true,
"requires": {
"graceful-fs": "^4.1.4",
@@ -12506,7 +12529,7 @@
},
"p-limit": {
"version": "1.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-1.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz",
"integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
"requires": {
"p-try": "^1.0.0"
@@ -12522,12 +12545,12 @@
},
"p-map": {
"version": "1.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-map/-/p-map-1.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz",
"integrity": "sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA=="
},
"p-retry": {
"version": "3.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-retry/-/p-retry-3.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz",
"integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==",
"dev": true,
"requires": {
@@ -12553,7 +12576,7 @@
},
"pako": {
"version": "1.0.11",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/pako/-/pako-1.0.11.tgz",
+ "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz",
"integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==",
"dev": true
},
@@ -12564,7 +12587,7 @@
},
"parallel-transform": {
"version": "1.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/parallel-transform/-/parallel-transform-1.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz",
"integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==",
"dev": true,
"requires": {
@@ -12593,7 +12616,7 @@
},
"parchment": {
"version": "1.1.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/parchment/-/parchment-1.1.4.tgz",
+ "resolved": "https://registry.npmjs.org/parchment/-/parchment-1.1.4.tgz",
"integrity": "sha512-J5FBQt/pM2inLzg4hEWmzQx/8h8D0CiDxaG3vyp9rKrQRSDgBlhjdP5jQGgosEajXPSQouXGHOmVdgo7QmJuOg=="
},
"parse-asn1": {
@@ -12641,9 +12664,8 @@
},
"parseurl": {
"version": "1.3.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/parseurl/-/parseurl-1.3.3.tgz",
- "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
- "dev": true
+ "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
+ "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="
},
"pascal-case": {
"version": "3.1.2",
@@ -12670,7 +12692,7 @@
},
"path-browserify": {
"version": "0.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/path-browserify/-/path-browserify-0.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz",
"integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==",
"dev": true
},
@@ -12707,7 +12729,7 @@
},
"path-to-regexp": {
"version": "1.8.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/path-to-regexp/-/path-to-regexp-1.8.0.tgz",
+ "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz",
"integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==",
"requires": {
"isarray": "0.0.1"
@@ -12796,13 +12818,13 @@
},
"pluralize": {
"version": "7.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/pluralize/-/pluralize-7.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz",
"integrity": "sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==",
"dev": true
},
"popper.js": {
"version": "1.16.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/popper.js/-/popper.js-1.16.1.tgz",
+ "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz",
"integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ=="
},
"portfinder": {
@@ -12840,7 +12862,7 @@
},
"postcss": {
"version": "6.0.23",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss/-/postcss-6.0.23.tgz",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz",
"integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==",
"requires": {
"chalk": "^2.4.1",
@@ -12850,7 +12872,7 @@
"dependencies": {
"chalk": {
"version": "2.4.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"requires": {
"ansi-styles": "^3.2.1",
@@ -12891,7 +12913,7 @@
},
"postcss-colormin": {
"version": "4.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-colormin/-/postcss-colormin-4.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz",
"integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==",
"dev": true,
"requires": {
@@ -12934,7 +12956,7 @@
},
"postcss-convert-values": {
"version": "4.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz",
"integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==",
"dev": true,
"requires": {
@@ -12956,7 +12978,7 @@
},
"postcss-discard-comments": {
"version": "4.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz",
"integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==",
"dev": true,
"requires": {
@@ -12977,7 +12999,7 @@
},
"postcss-discard-duplicates": {
"version": "4.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz",
"integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==",
"dev": true,
"requires": {
@@ -12998,7 +13020,7 @@
},
"postcss-discard-empty": {
"version": "4.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz",
"integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==",
"dev": true,
"requires": {
@@ -13019,7 +13041,7 @@
},
"postcss-discard-overridden": {
"version": "4.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz",
"integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==",
"dev": true,
"requires": {
@@ -13040,7 +13062,7 @@
},
"postcss-flexbugs-fixes": {
"version": "3.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-3.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-3.2.0.tgz",
"integrity": "sha512-0AuD9HG1Ey3/3nqPWu9yqf7rL0KCPu5VgjDsjf5mzEcuo9H/z8nco/fljKgjsOUrZypa95MI0kS4xBZeBzz2lw==",
"requires": {
"postcss": "^6.0.1"
@@ -13131,7 +13153,7 @@
},
"postcss-loader": {
"version": "2.0.8",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-loader/-/postcss-loader-2.0.8.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-2.0.8.tgz",
"integrity": "sha512-KtXBiQ/r/WYW8LxTSJK7h8wLqvCMSub/BqmRnud/Mu8RzwflW9cmXxwsMwbn15TNv287Hcufdb3ZSs7xHKnG8Q==",
"dev": true,
"requires": {
@@ -13178,7 +13200,7 @@
},
"postcss-merge-longhand": {
"version": "4.0.11",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz",
"integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==",
"dev": true,
"requires": {
@@ -13202,7 +13224,7 @@
},
"postcss-merge-rules": {
"version": "4.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz",
"integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==",
"dev": true,
"requires": {
@@ -13244,7 +13266,7 @@
},
"postcss-selector-parser": {
"version": "3.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz",
"integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==",
"dev": true,
"requires": {
@@ -13257,7 +13279,7 @@
},
"postcss-minify-font-values": {
"version": "4.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz",
"integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==",
"dev": true,
"requires": {
@@ -13279,7 +13301,7 @@
},
"postcss-minify-gradients": {
"version": "4.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz",
"integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==",
"dev": true,
"requires": {
@@ -13303,7 +13325,7 @@
},
"postcss-minify-params": {
"version": "4.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz",
"integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==",
"dev": true,
"requires": {
@@ -13347,7 +13369,7 @@
},
"postcss-minify-selectors": {
"version": "4.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz",
"integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==",
"dev": true,
"requires": {
@@ -13369,7 +13391,7 @@
},
"postcss-selector-parser": {
"version": "3.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz",
"integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==",
"dev": true,
"requires": {
@@ -13382,7 +13404,7 @@
},
"postcss-modules-extract-imports": {
"version": "2.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz",
"integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==",
"dev": true,
"requires": {
@@ -13433,7 +13455,7 @@
},
"postcss-modules-scope": {
"version": "2.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz",
"integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==",
"dev": true,
"requires": {
@@ -13455,7 +13477,7 @@
},
"postcss-modules-values": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz",
"integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==",
"dev": true,
"requires": {
@@ -13477,7 +13499,7 @@
},
"postcss-normalize-charset": {
"version": "4.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz",
"integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==",
"dev": true,
"requires": {
@@ -13498,7 +13520,7 @@
},
"postcss-normalize-display-values": {
"version": "4.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz",
"integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==",
"dev": true,
"requires": {
@@ -13521,7 +13543,7 @@
},
"postcss-normalize-positions": {
"version": "4.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz",
"integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==",
"dev": true,
"requires": {
@@ -13545,7 +13567,7 @@
},
"postcss-normalize-repeat-style": {
"version": "4.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz",
"integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==",
"dev": true,
"requires": {
@@ -13569,7 +13591,7 @@
},
"postcss-normalize-string": {
"version": "4.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz",
"integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==",
"dev": true,
"requires": {
@@ -13592,7 +13614,7 @@
},
"postcss-normalize-timing-functions": {
"version": "4.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz",
"integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==",
"dev": true,
"requires": {
@@ -13615,7 +13637,7 @@
},
"postcss-normalize-unicode": {
"version": "4.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz",
"integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==",
"dev": true,
"requires": {
@@ -13656,7 +13678,7 @@
},
"postcss-normalize-url": {
"version": "4.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz",
"integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==",
"dev": true,
"requires": {
@@ -13668,7 +13690,7 @@
"dependencies": {
"normalize-url": {
"version": "3.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/normalize-url/-/normalize-url-3.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz",
"integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==",
"dev": true
},
@@ -13686,7 +13708,7 @@
},
"postcss-normalize-whitespace": {
"version": "4.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz",
"integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==",
"dev": true,
"requires": {
@@ -13708,7 +13730,7 @@
},
"postcss-ordered-values": {
"version": "4.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz",
"integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==",
"dev": true,
"requires": {
@@ -13731,7 +13753,7 @@
},
"postcss-reduce-initial": {
"version": "4.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz",
"integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==",
"dev": true,
"requires": {
@@ -13773,7 +13795,7 @@
},
"postcss-reduce-transforms": {
"version": "4.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz",
"integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==",
"dev": true,
"requires": {
@@ -13830,7 +13852,7 @@
},
"postcss-unique-selectors": {
"version": "4.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz",
"integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==",
"dev": true,
"requires": {
@@ -13853,7 +13875,7 @@
},
"postcss-value-parser": {
"version": "3.3.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
"integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ=="
},
"preact": {
@@ -13908,7 +13930,7 @@
},
"private": {
"version": "0.1.8",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/private/-/private-0.1.8.tgz",
+ "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz",
"integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg=="
},
"process": {
@@ -13918,12 +13940,12 @@
},
"process-nextick-args": {
"version": "2.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
"integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
},
"progress": {
"version": "2.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/progress/-/progress-2.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
"integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
"dev": true
},
@@ -13955,7 +13977,6 @@
"version": "2.0.7",
"resolved": "http://173.15.15.82:8081/repository/npm-all/proxy-addr/-/proxy-addr-2.0.7.tgz",
"integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
- "dev": true,
"requires": {
"forwarded": "0.2.0",
"ipaddr.js": "1.9.1"
@@ -13979,7 +14000,7 @@
},
"public-encrypt": {
"version": "4.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/public-encrypt/-/public-encrypt-4.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz",
"integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==",
"dev": true,
"requires": {
@@ -14011,7 +14032,7 @@
},
"pumpify": {
"version": "1.5.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/pumpify/-/pumpify-1.5.1.tgz",
+ "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz",
"integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==",
"dev": true,
"requires": {
@@ -14045,7 +14066,7 @@
"dependencies": {
"chalk": {
"version": "2.4.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"requires": {
@@ -14056,7 +14077,7 @@
"dependencies": {
"supports-color": {
"version": "5.5.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/supports-color/-/supports-color-5.5.0.tgz",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dev": true,
"requires": {
@@ -14067,7 +14088,7 @@
},
"commander": {
"version": "5.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/commander/-/commander-5.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz",
"integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==",
"dev": true
},
@@ -14084,7 +14105,7 @@
},
"supports-color": {
"version": "6.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/supports-color/-/supports-color-6.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
"integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
"dev": true,
"requires": {
@@ -14150,7 +14171,7 @@
},
"quill": {
"version": "1.3.7",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/quill/-/quill-1.3.7.tgz",
+ "resolved": "https://registry.npmjs.org/quill/-/quill-1.3.7.tgz",
"integrity": "sha512-hG/DVzh/TiknWtE6QmWAF/pxoZKYxfe3J/d/+ShUWkDvvkZQVTPeVmUJVu1uE6DDooC4fWTiCLh84ul89oNz5g==",
"requires": {
"clone": "^2.1.1",
@@ -14163,7 +14184,7 @@
},
"quill-delta": {
"version": "3.6.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/quill-delta/-/quill-delta-3.6.3.tgz",
+ "resolved": "https://registry.npmjs.org/quill-delta/-/quill-delta-3.6.3.tgz",
"integrity": "sha512-wdIGBlcX13tCHOXGMVnnTVFtGRLoP0imqxM696fIPwIf5ODIYUHIvHbZcyvGlZFiFhK5XzDC2lpjbxRhnM05Tg==",
"requires": {
"deep-equal": "^1.0.1",
@@ -14173,12 +14194,12 @@
},
"quill-delta-to-html": {
"version": "0.11.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/quill-delta-to-html/-/quill-delta-to-html-0.11.0.tgz",
+ "resolved": "https://registry.npmjs.org/quill-delta-to-html/-/quill-delta-to-html-0.11.0.tgz",
"integrity": "sha512-PsW/VIuVDxa0xN/e+jglsSZy2eSUl/db3Lbvv3uC/syFi2ZIBL8zSsQfR7qrURrt4Aih36JZnw37CFxelIaX2Q=="
},
"raf": {
"version": "3.4.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/raf/-/raf-3.4.0.tgz",
+ "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.0.tgz",
"integrity": "sha512-pDP/NMRAXoTfrhCfyfSEwJAKLaxBU9eApMeBPB1TkDouZmvPerIClV8lTAd+uF8ZiTaVl69e1FCxQrAd/VTjGw==",
"requires": {
"performance-now": "^2.1.0"
@@ -14199,7 +14220,7 @@
},
"randomatic": {
"version": "3.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/randomatic/-/randomatic-3.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz",
"integrity": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==",
"requires": {
"is-number": "^4.0.0",
@@ -14209,19 +14230,19 @@
"dependencies": {
"is-number": {
"version": "4.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-number/-/is-number-4.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz",
"integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ=="
},
"kind-of": {
"version": "6.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
}
}
},
"randombytes": {
"version": "2.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/randombytes/-/randombytes-2.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
"integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
"dev": true,
"requires": {
@@ -14230,7 +14251,7 @@
},
"randomfill": {
"version": "1.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/randomfill/-/randomfill-1.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz",
"integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==",
"dev": true,
"requires": {
@@ -14240,15 +14261,13 @@
},
"range-parser": {
"version": "1.2.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/range-parser/-/range-parser-1.2.1.tgz",
- "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
- "dev": true
+ "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
+ "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="
},
"raw-body": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz",
"integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==",
- "dev": true,
"requires": {
"bytes": "3.1.2",
"http-errors": "2.0.0",
@@ -14260,7 +14279,6 @@
"version": "0.4.24",
"resolved": "http://173.15.15.82:8081/repository/npm-all/iconv-lite/-/iconv-lite-0.4.24.tgz",
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
- "dev": true,
"requires": {
"safer-buffer": ">= 2.1.2 < 3"
}
@@ -14269,7 +14287,7 @@
},
"rc": {
"version": "1.2.8",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/rc/-/rc-1.2.8.tgz",
+ "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz",
"integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==",
"dev": true,
"requires": {
@@ -14281,7 +14299,7 @@
},
"rc-align": {
"version": "2.4.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-align/-/rc-align-2.4.5.tgz",
+ "resolved": "https://registry.npmjs.org/rc-align/-/rc-align-2.4.5.tgz",
"integrity": "sha512-nv9wYUYdfyfK+qskThf4BQUSIadeI/dCsfaMZfNEoxm9HwOIioQ+LyqmMK6jWHAZQgOzMLaqawhuBXlF63vgjw==",
"requires": {
"babel-runtime": "^6.26.0",
@@ -14292,7 +14310,7 @@
},
"rc-animate": {
"version": "2.11.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-animate/-/rc-animate-2.11.1.tgz",
+ "resolved": "https://registry.npmjs.org/rc-animate/-/rc-animate-2.11.1.tgz",
"integrity": "sha512-1NyuCGFJG/0Y+9RKh5y/i/AalUCA51opyyS/jO2seELpgymZm2u9QV3xwODwEuzkmeQ1BDPxMLmYLcTJedPlkQ==",
"requires": {
"babel-runtime": "6.x",
@@ -14471,7 +14489,7 @@
},
"rc-menu": {
"version": "7.5.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-menu/-/rc-menu-7.5.5.tgz",
+ "resolved": "https://registry.npmjs.org/rc-menu/-/rc-menu-7.5.5.tgz",
"integrity": "sha512-4YJXJgrpUGEA1rMftXN7bDhrV5rPB8oBJoHqT+GVXtIWCanfQxEnM3fmhHQhatL59JoAFMZhJaNzhJIk4FUWCQ==",
"requires": {
"classnames": "2.x",
@@ -14563,7 +14581,7 @@
},
"rc-select": {
"version": "8.8.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-select/-/rc-select-8.8.4.tgz",
+ "resolved": "https://registry.npmjs.org/rc-select/-/rc-select-8.8.4.tgz",
"integrity": "sha512-3ylsjhiUtEN4Tg6/ddg1wG0FXSmT/67LT2/KF8azaG6x/1sMNmSxoyi1nxVoFdmkCO5luDA5F1xCHCOxGuEj3A==",
"requires": {
"babel-runtime": "^6.23.0",
@@ -14694,7 +14712,7 @@
},
"rc-tree": {
"version": "1.15.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-tree/-/rc-tree-1.15.3.tgz",
+ "resolved": "https://registry.npmjs.org/rc-tree/-/rc-tree-1.15.3.tgz",
"integrity": "sha512-FIKGKCesbQnILbsjGyu354R5pfrFtOcYz/w3ZIqFkJWIbbUeveWU8BgTKcpeSQgyKju1hsWORAePkeA+V1unFg==",
"requires": {
"babel-runtime": "^6.23.0",
@@ -14790,7 +14808,7 @@
},
"rc-trigger": {
"version": "2.6.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-trigger/-/rc-trigger-2.6.5.tgz",
+ "resolved": "https://registry.npmjs.org/rc-trigger/-/rc-trigger-2.6.5.tgz",
"integrity": "sha512-m6Cts9hLeZWsTvWnuMm7oElhf+03GOjOLfTuU0QmdB9ZrW7jR2IpI5rpNM7i9MvAAlMAmTx5Zr7g3uu/aMvZAw==",
"requires": {
"babel-runtime": "6.x",
@@ -14804,7 +14822,7 @@
},
"rc-upload": {
"version": "2.9.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/rc-upload/-/rc-upload-2.9.4.tgz",
+ "resolved": "https://registry.npmjs.org/rc-upload/-/rc-upload-2.9.4.tgz",
"integrity": "sha512-WXt0HGxXyzLrPV6iec/96Rbl/6dyrAW8pKuY6wwD7yFYwfU5bjgKjv7vC8KNMJ6wzitFrZjnoiogNL3dF9dj3Q==",
"requires": {
"babel-runtime": "6.x",
@@ -14849,7 +14867,7 @@
},
"react-beautiful-dnd": {
"version": "10.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/react-beautiful-dnd/-/react-beautiful-dnd-10.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/react-beautiful-dnd/-/react-beautiful-dnd-10.1.1.tgz",
"integrity": "sha512-TdE06Shfp56wm28EzjgC56EEMgGI5PDHejJ2bxuAZvZr8CVsbksklsJC06Hxf0MSL7FHbflL/RpkJck9isuxHg==",
"requires": {
"@babel/runtime-corejs2": "^7.4.2",
@@ -14877,7 +14895,7 @@
},
"react-codemirror2": {
"version": "6.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/react-codemirror2/-/react-codemirror2-6.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/react-codemirror2/-/react-codemirror2-6.0.1.tgz",
"integrity": "sha512-rutEKVgvFhWcy/GeVA1hFbqrO89qLqgqdhUr7YhYgIzdyICdlRQv+ztuNvOFQMXrO0fLt0VkaYOdMdYdQgsSUA=="
},
"react-color": {
@@ -14896,12 +14914,12 @@
},
"react-content-loader": {
"version": "3.4.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/react-content-loader/-/react-content-loader-3.4.2.tgz",
+ "resolved": "https://registry.npmjs.org/react-content-loader/-/react-content-loader-3.4.2.tgz",
"integrity": "sha512-UsL3uyPUBZbaPXr52E+MMIOjs7qr6QpcCiF9Xt7we0ACEMAFYp6rWNxVwJbk4/1Peqe9Deajs0PRW5ymvyF5SA=="
},
"react-cookies": {
"version": "0.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/react-cookies/-/react-cookies-0.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/react-cookies/-/react-cookies-0.1.1.tgz",
"integrity": "sha512-PP75kJ4vtoHuuTdq0TAD3RmlAv7vuDQh9fkC4oDlhntgs9vX1DmREomO0Y1mcQKR9nMZ6/zxoflaMJ3MAmF5KQ==",
"requires": {
"cookie": "^0.3.1",
@@ -14977,7 +14995,7 @@
},
"react-dev-utils": {
"version": "9.2.0-next.80",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/react-dev-utils/-/react-dev-utils-9.2.0-next.80.tgz",
+ "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-9.2.0-next.80.tgz",
"integrity": "sha512-ExIaMoWTP5l36w0Xm4uA3SYpkn8xuP6sniZ3dDuvd9RvzY3SZDqj0LkfDOGfX3edXGZwiC/FEpABNwJGBrx04g==",
"requires": {
"@babel/code-frame": "7.5.5",
@@ -15013,7 +15031,7 @@
},
"browserslist": {
"version": "4.7.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/browserslist/-/browserslist-4.7.3.tgz",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.7.3.tgz",
"integrity": "sha512-jWvmhqYpx+9EZm/FxcZSbUZyDEvDTLDi3nSAKbzEkyWvtI0mNSmUosey+5awDW1RUlrgXbQb5A6qY1xQH9U6MQ==",
"requires": {
"caniuse-lite": "^1.0.30001010",
@@ -15023,7 +15041,7 @@
},
"chalk": {
"version": "2.4.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"requires": {
"ansi-styles": "^3.2.1",
@@ -15038,7 +15056,7 @@
},
"find-up": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/find-up/-/find-up-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
"integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
"requires": {
"locate-path": "^3.0.0"
@@ -15046,7 +15064,7 @@
},
"loader-utils": {
"version": "1.2.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/loader-utils/-/loader-utils-1.2.3.tgz",
+ "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz",
"integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==",
"requires": {
"big.js": "^5.2.2",
@@ -15056,7 +15074,7 @@
},
"locate-path": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/locate-path/-/locate-path-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
"integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
"requires": {
"p-locate": "^3.0.0",
@@ -15065,7 +15083,7 @@
},
"p-limit": {
"version": "2.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
"integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"requires": {
"p-try": "^2.0.0"
@@ -15073,7 +15091,7 @@
},
"p-locate": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-locate/-/p-locate-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
"integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
"requires": {
"p-limit": "^2.0.0"
@@ -15081,12 +15099,12 @@
},
"p-try": {
"version": "2.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-try/-/p-try-2.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
"integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="
},
"strip-ansi": {
"version": "5.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/strip-ansi/-/strip-ansi-5.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
"integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
"requires": {
"ansi-regex": "^4.1.0"
@@ -15116,12 +15134,12 @@
},
"react-error-overlay": {
"version": "6.1.0-next.80",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/react-error-overlay/-/react-error-overlay-6.1.0-next.80.tgz",
+ "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.1.0-next.80.tgz",
"integrity": "sha512-FEho9UexWQuyY1cuGQY/H20upVkojaleGSx2jkLvj5/UtpT4NkI8IhettXmSf/BfV4CG5xN+eENSh7Q6gAO2dw=="
},
"react-event-listener": {
"version": "0.5.10",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/react-event-listener/-/react-event-listener-0.5.10.tgz",
+ "resolved": "https://registry.npmjs.org/react-event-listener/-/react-event-listener-0.5.10.tgz",
"integrity": "sha512-YZklRszh9hq3WP3bdNLjFwJcTCVe7qyTf5+LWNaHfZQaZrptsefDK2B5HHpOsEEaMHvjllUPr0+qIFVTSsurow==",
"requires": {
"@babel/runtime": "7.0.0-beta.42",
@@ -15132,7 +15150,7 @@
"dependencies": {
"@babel/runtime": {
"version": "7.0.0-beta.42",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/@babel/runtime/-/runtime-7.0.0-beta.42.tgz",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.0.0-beta.42.tgz",
"integrity": "sha512-iOGRzUoONLOtmCvjUsZv3mZzgCT6ljHQY5fr1qG1QIiJQwtM7zbPWGGpa3QWETq+UqwWyJnoi5XZDZRwZDFciQ==",
"requires": {
"core-js": "^2.5.3",
@@ -15220,7 +15238,7 @@
},
"react-is": {
"version": "16.13.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/react-is/-/react-is-16.13.1.tgz",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
"integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
},
"react-json-view": {
@@ -15237,7 +15255,7 @@
},
"react-jss": {
"version": "8.6.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/react-jss/-/react-jss-8.6.1.tgz",
+ "resolved": "https://registry.npmjs.org/react-jss/-/react-jss-8.6.1.tgz",
"integrity": "sha512-SH6XrJDJkAphp602J14JTy3puB2Zxz1FkM3bKVE8wON+va99jnUTKWnzGECb3NfIn9JPR5vHykge7K3/A747xQ==",
"requires": {
"hoist-non-react-statics": "^2.5.0",
@@ -15249,7 +15267,7 @@
"dependencies": {
"hoist-non-react-statics": {
"version": "2.5.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz",
+ "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz",
"integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw=="
}
}
@@ -15267,12 +15285,12 @@
},
"react-lifecycles-compat": {
"version": "3.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz",
"integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA=="
},
"react-loadable": {
"version": "5.5.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/react-loadable/-/react-loadable-5.5.0.tgz",
+ "resolved": "https://registry.npmjs.org/react-loadable/-/react-loadable-5.5.0.tgz",
"integrity": "sha512-C8Aui0ZpMd4KokxRdVAm2bQtI03k2RMRNzOB+IipV3yxFTSVICv7WoUr5L9ALB5BmKO1iHgZtWM8EvYG83otdg==",
"requires": {
"prop-types": "^15.5.0"
@@ -15280,7 +15298,7 @@
},
"react-monaco-editor": {
"version": "0.37.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/react-monaco-editor/-/react-monaco-editor-0.37.0.tgz",
+ "resolved": "https://registry.npmjs.org/react-monaco-editor/-/react-monaco-editor-0.37.0.tgz",
"integrity": "sha512-4fbmTIPOfEdmAlslYPVXt+TRSd975XwgfxuSEL32efjXQwTzPZWA/Wf5qn8nYBMl+Lfdhu1DGDTLE6CZ4UOjzw==",
"requires": {
"@types/react": "^16.x",
@@ -15333,7 +15351,7 @@
},
"react-redux": {
"version": "5.0.7",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/react-redux/-/react-redux-5.0.7.tgz",
+ "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-5.0.7.tgz",
"integrity": "sha512-5VI8EV5hdgNgyjfmWzBbdrqUkrVRKlyTKk1sGH3jzM2M2Mhj/seQgPXaz6gVAj2lz/nz688AdTqMO18Lr24Zhg==",
"requires": {
"hoist-non-react-statics": "^2.5.0",
@@ -15346,7 +15364,7 @@
"dependencies": {
"hoist-non-react-statics": {
"version": "2.5.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz",
+ "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz",
"integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw=="
}
}
@@ -15362,7 +15380,7 @@
},
"react-router": {
"version": "4.3.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/react-router/-/react-router-4.3.1.tgz",
+ "resolved": "https://registry.npmjs.org/react-router/-/react-router-4.3.1.tgz",
"integrity": "sha512-yrvL8AogDh2X42Dt9iknk4wF4V8bWREPirFfS9gLU1huk6qK41sg7Z/1S81jjTrGHxa3B8R3J6xIkDAA6CVarg==",
"requires": {
"history": "^4.7.2",
@@ -15376,14 +15394,37 @@
"dependencies": {
"hoist-non-react-statics": {
"version": "2.5.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz",
+ "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz",
"integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw=="
}
}
},
+ "react-router-config": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/react-router-config/-/react-router-config-5.1.1.tgz",
+ "integrity": "sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==",
+ "requires": {
+ "@babel/runtime": "^7.1.2"
+ },
+ "dependencies": {
+ "@babel/runtime": {
+ "version": "7.23.6",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.6.tgz",
+ "integrity": "sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==",
+ "requires": {
+ "regenerator-runtime": "^0.14.0"
+ }
+ },
+ "regenerator-runtime": {
+ "version": "0.14.1",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
+ "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw=="
+ }
+ }
+ },
"react-router-dom": {
"version": "4.3.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/react-router-dom/-/react-router-dom-4.3.1.tgz",
+ "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-4.3.1.tgz",
"integrity": "sha512-c/MlywfxDdCp7EnB7YfPMOfMD3tOtIjrQlj/CKfNMBxdmpJP8xcz5P/UAFn3JbnQCNUxsHyVVqllF9LhgVyFCA==",
"requires": {
"history": "^4.7.2",
@@ -15396,7 +15437,7 @@
},
"react-scrollbar-size": {
"version": "2.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/react-scrollbar-size/-/react-scrollbar-size-2.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/react-scrollbar-size/-/react-scrollbar-size-2.1.0.tgz",
"integrity": "sha512-9dDUJvk7S48r0TRKjlKJ9e/LkLLYgc9LdQR6W21I8ZqtSrEsedPOoMji4nU3DHy7fx2l8YMScJS/N7qiloYzXQ==",
"requires": {
"babel-runtime": "^6.26.0",
@@ -15429,7 +15470,7 @@
},
"react-style-proptype": {
"version": "3.2.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/react-style-proptype/-/react-style-proptype-3.2.2.tgz",
+ "resolved": "https://registry.npmjs.org/react-style-proptype/-/react-style-proptype-3.2.2.tgz",
"integrity": "sha512-ywYLSjNkxKHiZOqNlso9PZByNEY+FTyh3C+7uuziK0xFXu9xzdyfHwg4S9iyiRRoPCR4k2LqaBBsWVmSBwCWYQ==",
"requires": {
"prop-types": "^15.5.4"
@@ -15465,7 +15506,7 @@
},
"react-transition-group": {
"version": "2.9.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/react-transition-group/-/react-transition-group-2.9.0.tgz",
+ "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz",
"integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==",
"requires": {
"dom-helpers": "^3.4.0",
@@ -15476,7 +15517,7 @@
},
"react-url-query": {
"version": "1.5.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/react-url-query/-/react-url-query-1.5.0.tgz",
+ "resolved": "https://registry.npmjs.org/react-url-query/-/react-url-query-1.5.0.tgz",
"integrity": "sha512-mivzv+T7+qNIvY3Ho+ja318huiWamFq6MbhxgU/hn71nICd5hqNMmULOZyp6+iTB+fyjQcdjsEI5iwz++syipw==",
"requires": {
"loose-envify": "^1.2.0",
@@ -15531,7 +15572,7 @@
},
"reactcss": {
"version": "1.2.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/reactcss/-/reactcss-1.2.3.tgz",
+ "resolved": "https://registry.npmjs.org/reactcss/-/reactcss-1.2.3.tgz",
"integrity": "sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==",
"requires": {
"lodash": "^4.0.1"
@@ -15598,7 +15639,7 @@
},
"readdirp": {
"version": "2.2.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/readdirp/-/readdirp-2.2.1.tgz",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz",
"integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==",
"requires": {
"graceful-fs": "^4.1.11",
@@ -15618,7 +15659,7 @@
},
"braces": {
"version": "2.3.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/braces/-/braces-2.3.2.tgz",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
"integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
"requires": {
"arr-flatten": "^1.1.0",
@@ -15711,7 +15752,7 @@
},
"is-descriptor": {
"version": "0.1.6",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
"integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
"requires": {
"is-accessor-descriptor": "^0.1.6",
@@ -15721,14 +15762,14 @@
},
"kind-of": {
"version": "5.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-5.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
"integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="
}
}
},
"extglob": {
"version": "2.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/extglob/-/extglob-2.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
"integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
"requires": {
"array-unique": "^0.3.2",
@@ -15782,7 +15823,7 @@
},
"is-accessor-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
"integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
"requires": {
"kind-of": "^6.0.0"
@@ -15790,7 +15831,7 @@
},
"is-data-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
"integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
"requires": {
"kind-of": "^6.0.0"
@@ -15798,7 +15839,7 @@
},
"is-descriptor": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
"integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
"requires": {
"is-accessor-descriptor": "^1.0.0",
@@ -15831,12 +15872,12 @@
},
"kind-of": {
"version": "6.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
},
"micromatch": {
"version": "3.1.10",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/micromatch/-/micromatch-3.1.10.tgz",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
"integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
"requires": {
"arr-diff": "^4.0.0",
@@ -15858,7 +15899,7 @@
},
"recompose": {
"version": "0.27.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/recompose/-/recompose-0.27.1.tgz",
+ "resolved": "https://registry.npmjs.org/recompose/-/recompose-0.27.1.tgz",
"integrity": "sha512-p7xsyi/rfNjHfdP7vPU02uSFa+Q1eHhjKrvO+3+kRP4Ortj+MxEmpmd+UQtBGM2D2iNAjzNI5rCyBKp9Ob5McA==",
"requires": {
"babel-runtime": "^6.26.0",
@@ -15871,14 +15912,14 @@
"dependencies": {
"hoist-non-react-statics": {
"version": "2.5.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz",
+ "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-2.5.5.tgz",
"integrity": "sha512-rqcy4pJo55FTTLWt+bU8ukscqHeE/e9KWvsOW2b/a3afxQZhwkQdT1rPPCJ0rYXdj4vNcasY8zHTH+jF/qStxw=="
}
}
},
"recursive-readdir": {
"version": "2.2.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/recursive-readdir/-/recursive-readdir-2.2.2.tgz",
+ "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz",
"integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==",
"requires": {
"minimatch": "3.0.4"
@@ -15929,7 +15970,7 @@
},
"redux-thunk": {
"version": "2.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/redux-thunk/-/redux-thunk-2.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.3.0.tgz",
"integrity": "sha512-km6dclyFnmcvxhAcrQV2AkZmPQjzPDjgVlQtR0EQjxZPyJ0BnMf3in1ryuR8A2qU0HldVRfxYXbFSKlI3N7Slw=="
},
"regenerate": {
@@ -15940,12 +15981,12 @@
},
"regenerator-runtime": {
"version": "0.11.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
+ "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
"integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="
},
"regenerator-transform": {
"version": "0.10.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/regenerator-transform/-/regenerator-transform-0.10.1.tgz",
+ "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz",
"integrity": "sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==",
"dev": true,
"requires": {
@@ -15956,7 +15997,7 @@
},
"regex-cache": {
"version": "0.4.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/regex-cache/-/regex-cache-0.4.4.tgz",
+ "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz",
"integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==",
"requires": {
"is-equal-shallow": "^0.1.3"
@@ -15964,7 +16005,7 @@
},
"regex-not": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/regex-not/-/regex-not-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz",
"integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==",
"requires": {
"extend-shallow": "^3.0.2",
@@ -15994,7 +16035,7 @@
},
"registry-auth-token": {
"version": "3.4.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/registry-auth-token/-/registry-auth-token-3.4.0.tgz",
+ "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.4.0.tgz",
"integrity": "sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==",
"dev": true,
"requires": {
@@ -16078,7 +16119,7 @@
},
"request": {
"version": "2.88.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/request/-/request-2.88.2.tgz",
+ "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz",
"integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==",
"requires": {
"aws-sign2": "~0.7.0",
@@ -16149,7 +16190,7 @@
},
"resize-observer-polyfill": {
"version": "1.5.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz",
+ "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz",
"integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg=="
},
"resolve": {
@@ -16191,7 +16232,7 @@
"dependencies": {
"global-modules": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/global-modules/-/global-modules-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz",
"integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==",
"dev": true,
"requires": {
@@ -16223,7 +16264,7 @@
},
"resolve-pathname": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/resolve-pathname/-/resolve-pathname-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz",
"integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng=="
},
"resolve-url": {
@@ -16250,7 +16291,7 @@
},
"ret": {
"version": "0.1.15",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/ret/-/ret-0.1.15.tgz",
+ "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz",
"integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg=="
},
"retry": {
@@ -16289,7 +16330,7 @@
},
"ripemd160": {
"version": "2.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/ripemd160/-/ripemd160-2.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz",
"integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==",
"dev": true,
"requires": {
@@ -16389,7 +16430,7 @@
},
"run-async": {
"version": "2.4.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/run-async/-/run-async-2.4.1.tgz",
+ "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz",
"integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ=="
},
"run-queue": {
@@ -16454,7 +16495,7 @@
},
"safer-buffer": {
"version": "2.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/safer-buffer/-/safer-buffer-2.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
},
"sane": {
@@ -16660,7 +16701,7 @@
},
"sass-loader": {
"version": "7.3.1",
- "resolved": "https://registry.npmmirror.com/sass-loader/-/sass-loader-7.3.1.tgz",
+ "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-7.3.1.tgz",
"integrity": "sha512-tuU7+zm0pTCynKYHpdqaPpe+MMTQ76I9TPZ7i4/5dZsigE350shQWe5EZNl5dBidM49TPET75tNqRbcsUZWeNA==",
"dev": true,
"requires": {
@@ -16673,13 +16714,13 @@
"dependencies": {
"pify": {
"version": "4.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/pify/-/pify-4.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
"integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
"dev": true
},
"semver": {
"version": "6.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/semver/-/semver-6.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
"dev": true
}
@@ -16773,12 +16814,12 @@
},
"sax": {
"version": "1.2.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/sax/-/sax-1.2.4.tgz",
+ "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz",
"integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="
},
"saxes": {
"version": "5.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/saxes/-/saxes-5.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz",
"integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==",
"requires": {
"xmlchars": "^2.2.0"
@@ -16786,7 +16827,7 @@
},
"scheduler": {
"version": "0.19.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/scheduler/-/scheduler-0.19.1.tgz",
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.19.1.tgz",
"integrity": "sha512-n/zwRWRYSUj0/3g/otKDRPMh6qv2SYMWNq85IEa8iZyAv8od9zDYpGSnpBEjNgcMNq6Scbu5KfIPxNF72R/2EA==",
"requires": {
"loose-envify": "^1.1.0",
@@ -16795,7 +16836,7 @@
},
"schema-typed": {
"version": "1.5.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/schema-typed/-/schema-typed-1.5.1.tgz",
+ "resolved": "https://registry.npmjs.org/schema-typed/-/schema-typed-1.5.1.tgz",
"integrity": "sha512-sx34fDSv08ubC9fTPKr3ba8YYs6nwqqRAITj6BXaxEaudJdjqtH7ZCe5wZQnQhbAGjKF4LcEwH15Oxf00pcSeg=="
},
"schema-utils": {
@@ -16815,7 +16856,7 @@
},
"scroll": {
"version": "2.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/scroll/-/scroll-2.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/scroll/-/scroll-2.0.3.tgz",
"integrity": "sha512-3ncZzf8gUW739h3LeS68nSssO60O+GGjT3SxzgofQmT8PIoyHzebql9HHPJopZX8iT6TKOdwaWFMqL6LzUN3DQ==",
"requires": {
"rafl": "~1.2.1"
@@ -16882,7 +16923,7 @@
},
"semver": {
"version": "5.7.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/semver/-/semver-5.7.1.tgz",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
"integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="
},
"semver-diff": {
@@ -16898,7 +16939,6 @@
"version": "0.18.0",
"resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz",
"integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==",
- "dev": true,
"requires": {
"debug": "2.6.9",
"depd": "2.0.0",
@@ -16918,8 +16958,7 @@
"ms": {
"version": "2.1.3",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
- "dev": true
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
}
}
},
@@ -16931,7 +16970,7 @@
},
"serialize-javascript": {
"version": "1.9.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/serialize-javascript/-/serialize-javascript-1.9.1.tgz",
+ "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.9.1.tgz",
"integrity": "sha512-0Vb/54WJ6k5v8sSWN09S0ora+Hnr+cX40r9F170nT+mSkaxltoE/7R3OrIdBSUv1OoiobH1QoWQbCnAO+e8J1A==",
"dev": true
},
@@ -16976,7 +17015,7 @@
},
"setprototypeof": {
"version": "1.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/setprototypeof/-/setprototypeof-1.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
"integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==",
"dev": true
},
@@ -16992,7 +17031,6 @@
"version": "1.15.0",
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz",
"integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==",
- "dev": true,
"requires": {
"encodeurl": "~1.0.2",
"escape-html": "~1.0.3",
@@ -17013,7 +17051,7 @@
},
"set-value": {
"version": "2.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/set-value/-/set-value-2.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz",
"integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==",
"requires": {
"extend-shallow": "^2.0.1",
@@ -17040,12 +17078,11 @@
"setprototypeof": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
- "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
- "dev": true
+ "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
},
"sha.js": {
"version": "2.4.11",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/sha.js/-/sha.js-2.4.11.tgz",
+ "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz",
"integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==",
"dev": true,
"requires": {
@@ -17064,7 +17101,7 @@
},
"shallow-clone": {
"version": "3.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/shallow-clone/-/shallow-clone-3.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz",
"integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==",
"dev": true,
"requires": {
@@ -17073,7 +17110,7 @@
"dependencies": {
"kind-of": {
"version": "6.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
"dev": true
}
@@ -17086,7 +17123,7 @@
},
"shallowequal": {
"version": "1.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/shallowequal/-/shallowequal-1.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz",
"integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ=="
},
"shebang-command": {
@@ -17104,17 +17141,17 @@
},
"shell-quote": {
"version": "1.7.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/shell-quote/-/shell-quote-1.7.2.tgz",
+ "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz",
"integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg=="
},
"shellwords": {
"version": "0.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/shellwords/-/shellwords-0.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz",
"integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww=="
},
"showdown": {
"version": "1.9.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/showdown/-/showdown-1.9.1.tgz",
+ "resolved": "https://registry.npmjs.org/showdown/-/showdown-1.9.1.tgz",
"integrity": "sha512-9cGuS382HcvExtf5AHk7Cb4pAeQQ+h0eTr33V1mu+crYWV4KvWAw6el92bDrqGEk5d46Ai/fhbEUwqJ/mTCNEA==",
"requires": {
"yargs": "^14.2"
@@ -17127,12 +17164,12 @@
},
"camelcase": {
"version": "5.3.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/camelcase/-/camelcase-5.3.1.tgz",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="
},
"cliui": {
"version": "5.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/cliui/-/cliui-5.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz",
"integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==",
"requires": {
"string-width": "^3.1.0",
@@ -17142,7 +17179,7 @@
},
"find-up": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/find-up/-/find-up-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
"integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
"requires": {
"locate-path": "^3.0.0"
@@ -17150,7 +17187,7 @@
},
"get-caller-file": {
"version": "2.0.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/get-caller-file/-/get-caller-file-2.0.5.tgz",
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="
},
"is-fullwidth-code-point": {
@@ -17160,7 +17197,7 @@
},
"locate-path": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/locate-path/-/locate-path-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
"integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
"requires": {
"p-locate": "^3.0.0",
@@ -17169,7 +17206,7 @@
},
"p-limit": {
"version": "2.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
"integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"requires": {
"p-try": "^2.0.0"
@@ -17177,7 +17214,7 @@
},
"p-locate": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-locate/-/p-locate-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
"integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
"requires": {
"p-limit": "^2.0.0"
@@ -17185,17 +17222,17 @@
},
"p-try": {
"version": "2.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-try/-/p-try-2.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
"integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="
},
"require-main-filename": {
"version": "2.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/require-main-filename/-/require-main-filename-2.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
"integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="
},
"string-width": {
"version": "3.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/string-width/-/string-width-3.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
"integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
"requires": {
"emoji-regex": "^7.0.1",
@@ -17205,7 +17242,7 @@
},
"strip-ansi": {
"version": "5.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/strip-ansi/-/strip-ansi-5.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
"integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
"requires": {
"ansi-regex": "^4.1.0"
@@ -17218,7 +17255,7 @@
},
"wrap-ansi": {
"version": "5.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
"integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==",
"requires": {
"ansi-styles": "^3.2.0",
@@ -17233,7 +17270,7 @@
},
"yargs": {
"version": "14.2.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/yargs/-/yargs-14.2.3.tgz",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-14.2.3.tgz",
"integrity": "sha512-ZbotRWhF+lkjijC/VhmOT9wSgyBQ7+zr13+YLkhfsSiTriYsMzkTUFP18pFhWwBeMa5gUc1MzbhrO6/VB7c9Xg==",
"requires": {
"cliui": "^5.0.0",
@@ -17262,7 +17299,7 @@
},
"showdown-katex": {
"version": "0.8.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/showdown-katex/-/showdown-katex-0.8.0.tgz",
+ "resolved": "https://registry.npmjs.org/showdown-katex/-/showdown-katex-0.8.0.tgz",
"integrity": "sha512-LPoX5InPRZ15nNRZ79yToh8UqmZvQDeQLsAlT11rvi437ZMhpJa9KorBmikHybrsyi4/MdIo/zZsrMnU+z07LQ==",
"requires": {
"jsdom": "^16.2.1",
@@ -17281,7 +17318,7 @@
},
"acorn-globals": {
"version": "6.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/acorn-globals/-/acorn-globals-6.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz",
"integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==",
"requires": {
"acorn": "^7.1.1",
@@ -17297,7 +17334,7 @@
},
"cssom": {
"version": "0.4.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/cssom/-/cssom-0.4.4.tgz",
+ "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz",
"integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw=="
},
"cssstyle": {
@@ -17310,7 +17347,7 @@
"dependencies": {
"cssom": {
"version": "0.3.8",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/cssom/-/cssom-0.3.8.tgz",
+ "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz",
"integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg=="
}
}
@@ -17344,7 +17381,7 @@
},
"html-encoding-sniffer": {
"version": "2.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz",
"integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==",
"requires": {
"whatwg-encoding": "^1.0.5"
@@ -17415,7 +17452,7 @@
},
"webidl-conversions": {
"version": "6.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/webidl-conversions/-/webidl-conversions-6.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz",
"integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w=="
},
"whatwg-url": {
@@ -17430,7 +17467,7 @@
},
"xml-name-validator": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
"integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw=="
}
}
@@ -17461,7 +17498,7 @@
"dependencies": {
"is-arrayish": {
"version": "0.3.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-arrayish/-/is-arrayish-0.3.2.tgz",
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
"integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==",
"dev": true
}
@@ -17511,7 +17548,7 @@
},
"slice-ansi": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/slice-ansi/-/slice-ansi-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz",
"integrity": "sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg==",
"dev": true,
"requires": {
@@ -17538,7 +17575,7 @@
},
"snapdragon": {
"version": "0.8.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/snapdragon/-/snapdragon-0.8.2.tgz",
+ "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz",
"integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==",
"requires": {
"base": "^0.11.1",
@@ -17576,7 +17613,7 @@
},
"snapdragon-node": {
"version": "2.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/snapdragon-node/-/snapdragon-node-2.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz",
"integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==",
"requires": {
"define-property": "^1.0.0",
@@ -17594,7 +17631,7 @@
},
"is-accessor-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
"integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
"requires": {
"kind-of": "^6.0.0"
@@ -17602,7 +17639,7 @@
},
"is-data-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
"integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
"requires": {
"kind-of": "^6.0.0"
@@ -17610,7 +17647,7 @@
},
"is-descriptor": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
"integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
"requires": {
"is-accessor-descriptor": "^1.0.0",
@@ -17625,14 +17662,14 @@
},
"kind-of": {
"version": "6.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="
}
}
},
"snapdragon-util": {
"version": "3.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/snapdragon-util/-/snapdragon-util-3.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz",
"integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==",
"requires": {
"kind-of": "^3.2.0"
@@ -17697,17 +17734,17 @@
},
"source-list-map": {
"version": "2.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/source-list-map/-/source-list-map-2.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz",
"integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw=="
},
"source-map": {
"version": "0.6.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/source-map/-/source-map-0.6.1.tgz",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
},
"source-map-resolve": {
"version": "0.5.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/source-map-resolve/-/source-map-resolve-0.5.3.tgz",
+ "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz",
"integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==",
"requires": {
"atob": "^2.1.2",
@@ -17751,7 +17788,7 @@
},
"spdx-exceptions": {
"version": "2.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz",
"integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A=="
},
"spdx-expression-parse": {
@@ -17770,7 +17807,7 @@
},
"spdy": {
"version": "4.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/spdy/-/spdy-4.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz",
"integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==",
"dev": true,
"requires": {
@@ -17792,7 +17829,7 @@
},
"ms": {
"version": "2.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/ms/-/ms-2.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
"dev": true
}
@@ -17800,7 +17837,7 @@
},
"spdy-transport": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/spdy-transport/-/spdy-transport-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz",
"integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==",
"dev": true,
"requires": {
@@ -17823,7 +17860,7 @@
},
"ms": {
"version": "2.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/ms/-/ms-2.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
"dev": true
},
@@ -17842,7 +17879,7 @@
},
"split-string": {
"version": "3.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/split-string/-/split-string-3.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz",
"integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==",
"requires": {
"extend-shallow": "^3.0.0"
@@ -17876,7 +17913,7 @@
},
"ssri": {
"version": "5.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/ssri/-/ssri-5.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz",
"integrity": "sha512-XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ==",
"dev": true,
"requires": {
@@ -17885,7 +17922,7 @@
},
"stable": {
"version": "0.1.8",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/stable/-/stable-0.1.8.tgz",
+ "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz",
"integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==",
"dev": true
},
@@ -17911,12 +17948,11 @@
"statuses": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
- "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
- "dev": true
+ "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ=="
},
"stdout-stream": {
"version": "1.4.1",
- "resolved": "https://registry.npmmirror.com/stdout-stream/-/stdout-stream-1.4.1.tgz",
+ "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.1.tgz",
"integrity": "sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==",
"dev": true,
"requires": {
@@ -17925,7 +17961,7 @@
},
"stifle": {
"version": "1.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/stifle/-/stifle-1.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/stifle/-/stifle-1.1.1.tgz",
"integrity": "sha512-INvON4DXLAWxpor+f0ZHnYQYXBqDXQRW1znLpf5/C/AWzJ0eQQAThfdqHQ5BDkiyywD67rQGvbE4LC+Aig6K/Q=="
},
"store": {
@@ -17935,7 +17971,7 @@
},
"stream-browserify": {
"version": "2.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/stream-browserify/-/stream-browserify-2.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz",
"integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==",
"dev": true,
"requires": {
@@ -17945,7 +17981,7 @@
},
"stream-each": {
"version": "1.2.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/stream-each/-/stream-each-1.2.3.tgz",
+ "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz",
"integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==",
"dev": true,
"requires": {
@@ -17955,7 +17991,7 @@
},
"stream-http": {
"version": "2.8.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/stream-http/-/stream-http-2.8.3.tgz",
+ "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz",
"integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==",
"dev": true,
"requires": {
@@ -17968,7 +18004,7 @@
},
"stream-shift": {
"version": "1.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/stream-shift/-/stream-shift-1.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz",
"integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==",
"dev": true
},
@@ -18032,7 +18068,7 @@
},
"string_decoder": {
"version": "1.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/string_decoder/-/string_decoder-1.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
"requires": {
"safe-buffer": "~5.1.0"
@@ -18084,7 +18120,7 @@
},
"style-loader": {
"version": "0.19.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/style-loader/-/style-loader-0.19.0.tgz",
+ "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-0.19.0.tgz",
"integrity": "sha512-9mx9sC9nX1dgP96MZOODpGC6l1RzQBITI2D5WJhu+wnbrSYVKLGuy14XJSLVQih/0GFrPpjelt+s//VcZQ2Evw==",
"dev": true,
"requires": {
@@ -18129,7 +18165,7 @@
},
"styled-components": {
"version": "4.4.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/styled-components/-/styled-components-4.4.1.tgz",
+ "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-4.4.1.tgz",
"integrity": "sha512-RNqj14kYzw++6Sr38n7197xG33ipEOktGElty4I70IKzQF1jzaD1U4xQ+Ny/i03UUhHlC5NWEO+d8olRCDji6g==",
"requires": {
"@babel/helper-module-imports": "^7.0.0",
@@ -18149,7 +18185,7 @@
},
"stylehacks": {
"version": "4.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/stylehacks/-/stylehacks-4.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz",
"integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==",
"dev": true,
"requires": {
@@ -18188,7 +18224,7 @@
},
"postcss-selector-parser": {
"version": "3.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz",
"integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==",
"dev": true,
"requires": {
@@ -18201,17 +18237,17 @@
},
"stylis": {
"version": "3.5.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/stylis/-/stylis-3.5.4.tgz",
+ "resolved": "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz",
"integrity": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q=="
},
"stylis-rule-sheet": {
"version": "0.0.10",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz",
+ "resolved": "https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz",
"integrity": "sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw=="
},
"supports-color": {
"version": "5.5.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/supports-color/-/supports-color-5.5.0.tgz",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"requires": {
"has-flag": "^3.0.0"
@@ -18224,7 +18260,7 @@
},
"svgo": {
"version": "1.3.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/svgo/-/svgo-1.3.2.tgz",
+ "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz",
"integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==",
"dev": true,
"requires": {
@@ -18245,7 +18281,7 @@
"dependencies": {
"chalk": {
"version": "2.4.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"requires": {
@@ -18256,7 +18292,7 @@
},
"css-select": {
"version": "2.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/css-select/-/css-select-2.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz",
"integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==",
"dev": true,
"requires": {
@@ -18298,7 +18334,7 @@
},
"domutils": {
"version": "1.7.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/domutils/-/domutils-1.7.0.tgz",
+ "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz",
"integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==",
"dev": true,
"requires": {
@@ -18319,7 +18355,7 @@
},
"sw-precache": {
"version": "5.2.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/sw-precache/-/sw-precache-5.2.1.tgz",
+ "resolved": "https://registry.npmjs.org/sw-precache/-/sw-precache-5.2.1.tgz",
"integrity": "sha512-8FAy+BP/FXE+ILfiVTt+GQJ6UEf4CVHD9OfhzH0JX+3zoy2uFk7Vn9EfXASOtVmmIVbL3jE/W8Z66VgPSZcMhw==",
"dev": true,
"requires": {
@@ -18366,17 +18402,17 @@
},
"symbol-observable": {
"version": "1.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/symbol-observable/-/symbol-observable-1.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz",
"integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ=="
},
"symbol-tree": {
"version": "3.2.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/symbol-tree/-/symbol-tree-3.2.4.tgz",
+ "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
"integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="
},
"table": {
"version": "4.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/table/-/table-4.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/table/-/table-4.0.3.tgz",
"integrity": "sha512-S7rnFITmBH1EnyKcvxBh1LjYeQMmnZtCXSEbHcH6S0NoKit24ZuFO/T1vDcLdYsLQkM188PVVhQmzKIuThNkKg==",
"dev": true,
"requires": {
@@ -18396,7 +18432,7 @@
},
"chalk": {
"version": "2.4.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"requires": {
@@ -18434,7 +18470,7 @@
},
"tapable": {
"version": "1.1.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/tapable/-/tapable-1.1.3.tgz",
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz",
"integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA=="
},
"tape": {
@@ -18461,7 +18497,7 @@
},
"tar": {
"version": "2.2.2",
- "resolved": "https://registry.npmmirror.com/tar/-/tar-2.2.2.tgz",
+ "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz",
"integrity": "sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==",
"dev": true,
"requires": {
@@ -18521,7 +18557,7 @@
"dependencies": {
"cacache": {
"version": "13.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/cacache/-/cacache-13.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-13.0.1.tgz",
"integrity": "sha512-5ZvAxd05HDDU+y9BVvcqYu2LLXmPnQ0hW62h32g4xBTgL/MppR4/04NHfj/ycM2y6lmTnbw6HVi+1eN0Psba6w==",
"dev": true,
"requires": {
@@ -18558,7 +18594,7 @@
},
"find-up": {
"version": "4.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/find-up/-/find-up-4.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
"integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
"dev": true,
"requires": {
@@ -18568,7 +18604,7 @@
},
"locate-path": {
"version": "5.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/locate-path/-/locate-path-5.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
"integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"dev": true,
"requires": {
@@ -18577,7 +18613,7 @@
},
"lru-cache": {
"version": "5.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/lru-cache/-/lru-cache-5.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
"dev": true,
"requires": {
@@ -18586,7 +18622,7 @@
},
"make-dir": {
"version": "3.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/make-dir/-/make-dir-3.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
"integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
"dev": true,
"requires": {
@@ -18595,7 +18631,7 @@
},
"p-limit": {
"version": "2.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
"integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"dev": true,
"requires": {
@@ -18604,7 +18640,7 @@
},
"p-locate": {
"version": "4.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-locate/-/p-locate-4.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
"integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"dev": true,
"requires": {
@@ -18613,7 +18649,7 @@
},
"p-map": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-map/-/p-map-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz",
"integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==",
"dev": true,
"requires": {
@@ -18622,19 +18658,19 @@
},
"p-try": {
"version": "2.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-try/-/p-try-2.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
"integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
"dev": true
},
"path-exists": {
"version": "4.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/path-exists/-/path-exists-4.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
"dev": true
},
"pkg-dir": {
"version": "4.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/pkg-dir/-/pkg-dir-4.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
"integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
"dev": true,
"requires": {
@@ -18654,7 +18690,7 @@
},
"semver": {
"version": "6.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/semver/-/semver-6.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
"dev": true
},
@@ -18669,7 +18705,7 @@
},
"ssri": {
"version": "7.1.1",
- "resolved": "https://registry.npmjs.org/ssri/-/ssri-7.1.1.tgz",
+ "resolved": "http://173.15.15.82:8081/repository/npm-all/ssri/-/ssri-7.1.1.tgz",
"integrity": "sha512-w+daCzXN89PseTL99MkA+fxJEcU3wfaE/ah0i0lnOlpG1CYLJ2ZjzEry68YBKfLs4JfoTShrTEsJkAZuNZ/stw==",
"dev": true,
"requires": {
@@ -18679,7 +18715,7 @@
},
"yallist": {
"version": "3.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/yallist/-/yallist-3.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
"dev": true
}
@@ -18687,7 +18723,7 @@
},
"test-exclude": {
"version": "4.2.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/test-exclude/-/test-exclude-4.2.3.tgz",
+ "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-4.2.3.tgz",
"integrity": "sha512-SYbXgY64PT+4GAL2ocI3HwPa4Q4TBKm0cwAVeKOt/Aoc0gSpNRjJX8w0pA1LMKZ3LBmd8pYBqApFNQLII9kavA==",
"requires": {
"arrify": "^1.0.1",
@@ -18704,7 +18740,7 @@
},
"theming": {
"version": "1.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/theming/-/theming-1.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/theming/-/theming-1.3.0.tgz",
"integrity": "sha512-ya5Ef7XDGbTPBv5ENTwrwkPUexrlPeiAg/EI9kdlUAZhNlRbCdhMKRgjNX1IcmsmiPcqDQZE6BpSaH+cr31FKw==",
"requires": {
"brcast": "^3.0.1",
@@ -18715,7 +18751,7 @@
},
"throat": {
"version": "3.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/throat/-/throat-3.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/throat/-/throat-3.2.0.tgz",
"integrity": "sha512-/EY8VpvlqJ+sFtLPeOgc8Pl7kQVOWv0woD87KTXVHPIAE842FGT+rokxIhe8xIUP1cfgrkt0as0vDLjDiMtr8w=="
},
"through": {
@@ -18725,7 +18761,7 @@
},
"through2": {
"version": "2.0.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/through2/-/through2-2.0.5.tgz",
+ "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz",
"integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==",
"dev": true,
"requires": {
@@ -18735,7 +18771,7 @@
},
"thunky": {
"version": "1.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/thunky/-/thunky-1.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz",
"integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==",
"dev": true
},
@@ -18762,7 +18798,7 @@
},
"tiny-emitter": {
"version": "2.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/tiny-emitter/-/tiny-emitter-2.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz",
"integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q=="
},
"tiny-invariant": {
@@ -18772,7 +18808,7 @@
},
"tiny-warning": {
"version": "1.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/tiny-warning/-/tiny-warning-1.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz",
"integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA=="
},
"tinycolor2": {
@@ -18782,7 +18818,7 @@
},
"tmp": {
"version": "0.0.33",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/tmp/-/tmp-0.0.33.tgz",
+ "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz",
"integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==",
"requires": {
"os-tmpdir": "~1.0.2"
@@ -18814,7 +18850,7 @@
},
"to-regex": {
"version": "3.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/to-regex/-/to-regex-3.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz",
"integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==",
"requires": {
"define-property": "^2.0.2",
@@ -18850,12 +18886,11 @@
"toidentifier": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
- "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
- "dev": true
+ "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="
},
"tough-cookie": {
"version": "2.5.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/tough-cookie/-/tough-cookie-2.5.0.tgz",
+ "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
"integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
"requires": {
"psl": "^1.1.28",
@@ -18880,7 +18915,7 @@
},
"true-case-path": {
"version": "1.0.3",
- "resolved": "https://registry.npmmirror.com/true-case-path/-/true-case-path-1.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz",
"integrity": "sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew==",
"dev": true,
"requires": {
@@ -18889,7 +18924,7 @@
},
"tryer": {
"version": "1.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/tryer/-/tryer-1.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz",
"integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==",
"dev": true
},
@@ -18932,9 +18967,8 @@
},
"type-is": {
"version": "1.6.18",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/type-is/-/type-is-1.6.18.tgz",
+ "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
"integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
- "dev": true,
"requires": {
"media-typer": "0.3.0",
"mime-types": "~2.1.24"
@@ -18952,7 +18986,7 @@
},
"typed-styles": {
"version": "0.0.7",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/typed-styles/-/typed-styles-0.0.7.tgz",
+ "resolved": "https://registry.npmjs.org/typed-styles/-/typed-styles-0.0.7.tgz",
"integrity": "sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q=="
},
"typedarray": {
@@ -18991,7 +19025,7 @@
},
"uglifyjs-webpack-plugin": {
"version": "2.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-2.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-2.2.0.tgz",
"integrity": "sha512-mHSkufBmBuJ+KHQhv5H0MXijtsoA1lynJt1lXOaotja8/I0pR4L9oGaPIZw+bQBOFittXZg9OC1sXSGO9D9ZYg==",
"dev": true,
"requires": {
@@ -19008,7 +19042,7 @@
"dependencies": {
"cacache": {
"version": "12.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/cacache/-/cacache-12.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz",
"integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==",
"dev": true,
"requires": {
@@ -19031,7 +19065,7 @@
},
"find-cache-dir": {
"version": "2.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/find-cache-dir/-/find-cache-dir-2.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz",
"integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==",
"dev": true,
"requires": {
@@ -19042,7 +19076,7 @@
},
"find-up": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/find-up/-/find-up-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
"integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
"dev": true,
"requires": {
@@ -19051,7 +19085,7 @@
},
"locate-path": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/locate-path/-/locate-path-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
"integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
"dev": true,
"requires": {
@@ -19061,7 +19095,7 @@
},
"lru-cache": {
"version": "5.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/lru-cache/-/lru-cache-5.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
"dev": true,
"requires": {
@@ -19070,7 +19104,7 @@
},
"mississippi": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/mississippi/-/mississippi-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz",
"integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==",
"dev": true,
"requires": {
@@ -19088,7 +19122,7 @@
},
"p-limit": {
"version": "2.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
"integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"dev": true,
"requires": {
@@ -19097,7 +19131,7 @@
},
"p-locate": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-locate/-/p-locate-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
"integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
"dev": true,
"requires": {
@@ -19106,13 +19140,13 @@
},
"p-try": {
"version": "2.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-try/-/p-try-2.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
"integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
"dev": true
},
"pkg-dir": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/pkg-dir/-/pkg-dir-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz",
"integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==",
"dev": true,
"requires": {
@@ -19152,7 +19186,7 @@
},
"yallist": {
"version": "3.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/yallist/-/yallist-3.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
"dev": true
}
@@ -19171,7 +19205,7 @@
},
"union-value": {
"version": "1.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/union-value/-/union-value-1.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz",
"integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==",
"requires": {
"arr-union": "^3.1.0",
@@ -19194,7 +19228,7 @@
},
"unique-filename": {
"version": "1.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/unique-filename/-/unique-filename-1.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz",
"integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==",
"dev": true,
"requires": {
@@ -19203,7 +19237,7 @@
},
"unique-slug": {
"version": "2.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/unique-slug/-/unique-slug-2.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz",
"integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==",
"dev": true,
"requires": {
@@ -19221,14 +19255,13 @@
},
"universalify": {
"version": "0.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/universalify/-/universalify-0.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
"integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg=="
},
"unpipe": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
- "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
- "dev": true
+ "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ=="
},
"unquote": {
"version": "1.1.1",
@@ -19285,7 +19318,7 @@
},
"upath": {
"version": "1.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/upath/-/upath-1.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz",
"integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg=="
},
"update-browserslist-db": {
@@ -19308,7 +19341,7 @@
},
"update-notifier": {
"version": "2.5.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/update-notifier/-/update-notifier-2.5.0.tgz",
+ "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz",
"integrity": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==",
"dev": true,
"requires": {
@@ -19326,7 +19359,7 @@
"dependencies": {
"chalk": {
"version": "2.4.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"requires": {
@@ -19376,7 +19409,7 @@
},
"url-loader": {
"version": "0.6.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/url-loader/-/url-loader-0.6.2.tgz",
+ "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-0.6.2.tgz",
"integrity": "sha512-h3qf9TNn53BpuXTTcpC+UehiRrl0Cv45Yr/xWayApjw6G8Bg2dGke7rIwDQ39piciWCWrC+WiqLjOh3SUp9n0Q==",
"dev": true,
"requires": {
@@ -19440,7 +19473,7 @@
},
"use": {
"version": "3.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/use/-/use-3.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",
"integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ=="
},
"use-composed-ref": {
@@ -19467,12 +19500,12 @@
"user-home": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz",
- "integrity": "sha1-K1viOjK2Onyd640PKNSFcko98ZA=",
+ "integrity": "sha512-aggiKfEEubv3UwRNqTzLInZpAOmKzwdHqEBmW/hBA/mt99eg+b4VrX6i+IRLxU8+WJYfa33rGwRseg4eElUgsQ==",
"dev": true
},
"util": {
"version": "0.11.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/util/-/util-0.11.1.tgz",
+ "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz",
"integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==",
"dev": true,
"requires": {
@@ -19494,7 +19527,7 @@
},
"util.promisify": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/util.promisify/-/util.promisify-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz",
"integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==",
"dev": true,
"requires": {
@@ -19511,12 +19544,11 @@
"utils-merge": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
- "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
- "dev": true
+ "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA=="
},
"uuid": {
"version": "3.4.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/uuid/-/uuid-3.4.0.tgz",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
},
"v8-compile-cache": {
@@ -19528,7 +19560,7 @@
"v8flags": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz",
- "integrity": "sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ=",
+ "integrity": "sha512-SKfhk/LlaXzvtowJabLZwD4K6SGRYeoxA7KJeISlUMAB/NT4CBkZjMq3WceX2Ckm4llwqYVo8TICgsDYCBU2tA==",
"dev": true,
"requires": {
"user-home": "^1.1.1"
@@ -19536,7 +19568,7 @@
},
"validate-npm-package-license": {
"version": "3.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",
"integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==",
"requires": {
"spdx-correct": "^3.0.0",
@@ -19545,24 +19577,23 @@
},
"value-equal": {
"version": "1.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/value-equal/-/value-equal-1.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz",
"integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw=="
},
"vary": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
- "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
- "dev": true
+ "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg=="
},
"vendors": {
"version": "1.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/vendors/-/vendors-1.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz",
"integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==",
"dev": true
},
"venn.js": {
"version": "0.2.20",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/venn.js/-/venn.js-0.2.20.tgz",
+ "resolved": "https://registry.npmjs.org/venn.js/-/venn.js-0.2.20.tgz",
"integrity": "sha512-bb5SYq/wamY9fvcuErb9a0FJkgIFHJjkLZWonQ+DoKKuDX3WPH2B4ouI1ce4K2iejBklQy6r1ly8nOGIyOCO6w==",
"requires": {
"d3-selection": "^1.0.2",
@@ -19582,7 +19613,7 @@
},
"vm-browserify": {
"version": "1.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/vm-browserify/-/vm-browserify-1.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz",
"integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==",
"dev": true
},
@@ -19593,7 +19624,7 @@
},
"w3c-hr-time": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz",
"integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==",
"requires": {
"browser-process-hrtime": "^1.0.0"
@@ -19601,7 +19632,7 @@
},
"w3c-xmlserializer": {
"version": "2.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz",
"integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==",
"requires": {
"xml-name-validator": "^3.0.0"
@@ -19609,7 +19640,7 @@
"dependencies": {
"xml-name-validator": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz",
"integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw=="
}
}
@@ -19624,7 +19655,7 @@
},
"warning": {
"version": "4.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/warning/-/warning-4.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/warning/-/warning-4.0.3.tgz",
"integrity": "sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==",
"requires": {
"loose-envify": "^1.0.0"
@@ -19791,7 +19822,7 @@
},
"wbuf": {
"version": "1.7.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/wbuf/-/wbuf-1.7.3.tgz",
+ "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz",
"integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==",
"dev": true,
"requires": {
@@ -19800,7 +19831,7 @@
},
"webidl-conversions": {
"version": "4.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/webidl-conversions/-/webidl-conversions-4.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz",
"integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg=="
},
"webpack": {
@@ -19854,7 +19885,7 @@
},
"braces": {
"version": "2.3.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/braces/-/braces-2.3.2.tgz",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
"integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==",
"dev": true,
"requires": {
@@ -19883,7 +19914,7 @@
},
"cacache": {
"version": "12.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/cacache/-/cacache-12.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz",
"integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==",
"dev": true,
"requires": {
@@ -19906,7 +19937,7 @@
},
"eslint-scope": {
"version": "4.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/eslint-scope/-/eslint-scope-4.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz",
"integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==",
"dev": true,
"requires": {
@@ -19989,7 +20020,7 @@
},
"is-descriptor": {
"version": "0.1.6",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-0.1.6.tgz",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz",
"integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==",
"dev": true,
"requires": {
@@ -20000,7 +20031,7 @@
},
"kind-of": {
"version": "5.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-5.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz",
"integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==",
"dev": true
}
@@ -20008,7 +20039,7 @@
},
"extglob": {
"version": "2.0.4",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/extglob/-/extglob-2.0.4.tgz",
+ "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz",
"integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==",
"dev": true,
"requires": {
@@ -20067,7 +20098,7 @@
},
"find-cache-dir": {
"version": "2.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/find-cache-dir/-/find-cache-dir-2.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz",
"integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==",
"dev": true,
"requires": {
@@ -20078,7 +20109,7 @@
},
"find-up": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/find-up/-/find-up-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
"integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
"dev": true,
"requires": {
@@ -20087,7 +20118,7 @@
},
"is-accessor-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
"integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
"dev": true,
"requires": {
@@ -20096,7 +20127,7 @@
},
"is-data-descriptor": {
"version": "1.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
"integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
"dev": true,
"requires": {
@@ -20105,7 +20136,7 @@
},
"is-descriptor": {
"version": "1.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/is-descriptor/-/is-descriptor-1.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
"integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
"dev": true,
"requires": {
@@ -20142,13 +20173,13 @@
},
"kind-of": {
"version": "6.0.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/kind-of/-/kind-of-6.0.3.tgz",
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
"integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
"dev": true
},
"locate-path": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/locate-path/-/locate-path-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
"integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
"dev": true,
"requires": {
@@ -20158,7 +20189,7 @@
},
"lru-cache": {
"version": "5.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/lru-cache/-/lru-cache-5.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
"dev": true,
"requires": {
@@ -20167,7 +20198,7 @@
},
"micromatch": {
"version": "3.1.10",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/micromatch/-/micromatch-3.1.10.tgz",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz",
"integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==",
"dev": true,
"requires": {
@@ -20188,7 +20219,7 @@
},
"mississippi": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/mississippi/-/mississippi-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz",
"integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==",
"dev": true,
"requires": {
@@ -20206,7 +20237,7 @@
},
"p-limit": {
"version": "2.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
"integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"dev": true,
"requires": {
@@ -20215,7 +20246,7 @@
},
"p-locate": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-locate/-/p-locate-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
"integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
"dev": true,
"requires": {
@@ -20224,13 +20255,13 @@
},
"p-try": {
"version": "2.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-try/-/p-try-2.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
"integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
"dev": true
},
"pkg-dir": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/pkg-dir/-/pkg-dir-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz",
"integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==",
"dev": true,
"requires": {
@@ -20290,7 +20321,7 @@
},
"yallist": {
"version": "3.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/yallist/-/yallist-3.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
"dev": true
}
@@ -20325,7 +20356,7 @@
},
"chalk": {
"version": "2.4.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"requires": {
@@ -20372,13 +20403,13 @@
},
"camelcase": {
"version": "5.3.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/camelcase/-/camelcase-5.3.1.tgz",
+ "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
"integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
"dev": true
},
"chalk": {
"version": "2.4.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/chalk/-/chalk-2.4.2.tgz",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"requires": {
@@ -20389,7 +20420,7 @@
"dependencies": {
"supports-color": {
"version": "5.5.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/supports-color/-/supports-color-5.5.0.tgz",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dev": true,
"requires": {
@@ -20400,7 +20431,7 @@
},
"cliui": {
"version": "5.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/cliui/-/cliui-5.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz",
"integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==",
"dev": true,
"requires": {
@@ -20411,7 +20442,7 @@
},
"find-up": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/find-up/-/find-up-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
"integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
"dev": true,
"requires": {
@@ -20420,7 +20451,7 @@
},
"get-caller-file": {
"version": "2.0.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/get-caller-file/-/get-caller-file-2.0.5.tgz",
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
"integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
"dev": true
},
@@ -20432,7 +20463,7 @@
},
"locate-path": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/locate-path/-/locate-path-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
"integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
"dev": true,
"requires": {
@@ -20442,7 +20473,7 @@
},
"p-limit": {
"version": "2.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
"integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"dev": true,
"requires": {
@@ -20451,7 +20482,7 @@
},
"p-locate": {
"version": "3.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-locate/-/p-locate-3.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
"integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
"dev": true,
"requires": {
@@ -20460,19 +20491,19 @@
},
"p-try": {
"version": "2.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/p-try/-/p-try-2.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
"integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
"dev": true
},
"require-main-filename": {
"version": "2.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/require-main-filename/-/require-main-filename-2.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
"integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
"dev": true
},
"string-width": {
"version": "3.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/string-width/-/string-width-3.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz",
"integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==",
"dev": true,
"requires": {
@@ -20483,7 +20514,7 @@
},
"strip-ansi": {
"version": "5.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/strip-ansi/-/strip-ansi-5.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
"integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
"dev": true,
"requires": {
@@ -20492,7 +20523,7 @@
},
"supports-color": {
"version": "6.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/supports-color/-/supports-color-6.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz",
"integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==",
"dev": true,
"requires": {
@@ -20507,7 +20538,7 @@
},
"wrap-ansi": {
"version": "5.1.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz",
"integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==",
"dev": true,
"requires": {
@@ -20518,7 +20549,7 @@
},
"y18n": {
"version": "4.0.3",
- "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
+ "resolved": "http://173.15.15.82:8081/repository/npm-all/y18n/-/y18n-4.0.3.tgz",
"integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
"dev": true
},
@@ -20542,7 +20573,7 @@
},
"yargs-parser": {
"version": "13.1.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/yargs-parser/-/yargs-parser-13.1.2.tgz",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz",
"integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==",
"dev": true,
"requires": {
@@ -20914,7 +20945,7 @@
},
"webpack-log": {
"version": "2.0.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/webpack-log/-/webpack-log-2.0.0.tgz",
+ "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz",
"integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==",
"dev": true,
"requires": {
@@ -20924,7 +20955,7 @@
},
"webpack-manifest-plugin": {
"version": "2.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz",
"integrity": "sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==",
"dev": true,
"requires": {
@@ -20936,7 +20967,7 @@
"dependencies": {
"fs-extra": {
"version": "7.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/fs-extra/-/fs-extra-7.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz",
"integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==",
"dev": true,
"requires": {
@@ -20956,9 +20987,14 @@
}
}
},
+ "webpack-node-externals": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz",
+ "integrity": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ=="
+ },
"webpack-sources": {
"version": "1.4.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/webpack-sources/-/webpack-sources-1.4.3.tgz",
+ "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz",
"integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==",
"requires": {
"source-list-map": "^2.0.0",
@@ -20994,7 +21030,7 @@
},
"whatwg-encoding": {
"version": "1.0.5",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz",
+ "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz",
"integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==",
"requires": {
"iconv-lite": "0.4.24"
@@ -21017,7 +21053,7 @@
},
"whatwg-mimetype": {
"version": "2.3.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz",
+ "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz",
"integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g=="
},
"whatwg-url": {
@@ -21085,7 +21121,7 @@
},
"widest-line": {
"version": "2.0.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/widest-line/-/widest-line-2.0.1.tgz",
+ "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz",
"integrity": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==",
"dev": true,
"requires": {
@@ -21142,7 +21178,7 @@
},
"word-wrap": {
"version": "1.2.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/word-wrap/-/word-wrap-1.2.3.tgz",
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
"integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="
},
"wordwrap": {
@@ -21152,7 +21188,7 @@
},
"worker-farm": {
"version": "1.7.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/worker-farm/-/worker-farm-1.7.0.tgz",
+ "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz",
"integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==",
"requires": {
"errno": "~0.1.7"
@@ -21160,7 +21196,7 @@
},
"worker-rpc": {
"version": "0.1.1",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/worker-rpc/-/worker-rpc-0.1.1.tgz",
+ "resolved": "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz",
"integrity": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==",
"requires": {
"microevent.ts": "~0.1.1"
@@ -21177,7 +21213,7 @@
},
"wrap-md-editor": {
"version": "0.2.20",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/wrap-md-editor/-/wrap-md-editor-0.2.20.tgz",
+ "resolved": "https://registry.npmjs.org/wrap-md-editor/-/wrap-md-editor-0.2.20.tgz",
"integrity": "sha512-pC3lgdziNbU2+bvC1Ac451S1mzO96AB2g08UuvGER0ZPAPRyJvY/xv+qk1XQMFjokb/qHYkmGB76Ho4Hjo/EaQ==",
"requires": {
"object-assign": "^4.1.1"
@@ -21199,7 +21235,7 @@
},
"write-file-atomic": {
"version": "2.4.3",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/write-file-atomic/-/write-file-atomic-2.4.3.tgz",
+ "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz",
"integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==",
"dev": true,
"requires": {
@@ -21226,7 +21262,7 @@
},
"xmlchars": {
"version": "2.2.0",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/xmlchars/-/xmlchars-2.2.0.tgz",
+ "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
"integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw=="
},
"xss": {
@@ -21240,7 +21276,7 @@
},
"xtend": {
"version": "4.0.2",
- "resolved": "http://173.15.15.82:8081/repository/npm-all/xtend/-/xtend-4.0.2.tgz",
+ "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
"integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
"dev": true
},
diff --git a/package.json b/package.json
index 420fac00..bb670a98 100644
--- a/package.json
+++ b/package.json
@@ -27,6 +27,7 @@
"echarts": "^4.9.0",
"echarts-wordcloud": "^2.0.0",
"editor.md": "^1.5.0",
+ "express": "^4.18.2",
"flv.js": "^1.5.0",
"fs-extra": "3.0.1",
"i18next": "^23.4.5",
@@ -88,6 +89,7 @@
"react-redux": "5.0.7",
"react-resizable": "^1.10.1",
"react-router": "^4.2.0",
+ "react-router-config": "^5.1.1",
"react-router-dom": "^4.2.2",
"react-slick": "^0.28.1",
"react-split-pane": "^0.1.91",
@@ -104,6 +106,7 @@
"slick-carousel": "^1.8.1",
"store": "^2.0.12",
"styled-components": "^4.4.1",
+ "webpack-node-externals": "^3.0.0",
"weixin-js-sdk": "^1.6.0",
"whatwg-fetch": "2.0.3",
"wrap-md-editor": "^0.2.20",
@@ -120,7 +123,9 @@
"gen_stats": "NODE_ENV=production webpack --profile --config=./config/webpack.config.prod.js --json > stats.json",
"ana": "webpack-bundle-analyzer ./stats.json",
"analyze": "npm run build -- --stats && webpack-bundle-analyzer build/bundle-stats.json",
- "analyz": "NODE_ENV=production npm_config_report=true npm run build"
+ "analyz": "NODE_ENV=production npm_config_report=true npm run build",
+ "server": "cross-env NODE_ENV=production nodemon --exec node \"./buildserver/bundle.js\" --watch config --watch server",
+ "build:server": "webpack --config config/webpack.server.js"
},
"jest": {
"collectCoverageFrom": [
@@ -191,6 +196,7 @@
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
+ "babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-app": "^3.1.1",
diff --git a/server/index.js b/server/index.js
new file mode 100644
index 00000000..890213b1
--- /dev/null
+++ b/server/index.js
@@ -0,0 +1,11 @@
+import express from "express";
+import {render} from "./render";
+
+const app = express();
+app.use(express.static('build'))
+
+app.get('*',function (req,res) {
+ render(req,res);
+})
+
+app.listen(3000);
diff --git a/server/render.js b/server/render.js
new file mode 100644
index 00000000..3d0ef62f
--- /dev/null
+++ b/server/render.js
@@ -0,0 +1,29 @@
+import React from "react";
+import {renderToString} from "react-dom/server";
+import {StaticRouter} from "react-router-dom";
+import {renderRoutes} from "react-router-config";
+import Routes from "../Routes";
+import { Provider } from "react-redux";
+import fs from 'fs'
+import path from 'path';
+
+export const render = (req,res)=>{
+ const context = {
+ css: []
+ };
+
+ const content = renderToString((
+