mirror of
https://github.com/LaconicNetwork/laconic.com.git
synced 2026-01-17 19:44:10 +00:00
hubspot form working but buggy
This commit is contained in:
parent
1501a44fa8
commit
0be0e92b90
672
package-lock.json
generated
672
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -35,6 +35,7 @@
|
||||
"graphql": "^16.3.0",
|
||||
"graphql-request": "^4.2.0",
|
||||
"gsap": "./src/lib/gsap/gsap-bonus.tgz",
|
||||
"hubspot": "^2.3.14",
|
||||
"keen-slider": "^6.6.9",
|
||||
"lodash": "^4.17.21",
|
||||
"marked": "^4.0.14",
|
||||
|
||||
@ -2,6 +2,9 @@ import clsx from 'clsx'
|
||||
import { useRouter } from 'next/router'
|
||||
import { useTheme } from 'next-themes'
|
||||
import { useEffect, useRef, useState } from 'react'
|
||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
||||
// @ts-ignore
|
||||
import HubspotForm from 'react-hubspot-form'
|
||||
import MailchimpSubscribe from 'react-mailchimp-subscribe'
|
||||
|
||||
import { ArrowLink } from '~/components/icons/arrow'
|
||||
@ -52,6 +55,24 @@ const SimpleForm = ({
|
||||
})
|
||||
}
|
||||
|
||||
useEffect(() => {
|
||||
const script = document.createElement('script')
|
||||
script.src = 'https://js.hsforms.net/forms/v2.js'
|
||||
document.body.appendChild(script)
|
||||
|
||||
script.addEventListener('load', () => {
|
||||
// @TS-ignore
|
||||
if (window.hbspt) {
|
||||
// @TS-ignore
|
||||
window.hbspt.forms.create({
|
||||
portalId: '22316985',
|
||||
formId: '7e20988-cdf6-497e-bfab-a0950d7d0c54',
|
||||
target: '#hubspotForm'
|
||||
})
|
||||
}
|
||||
})
|
||||
}, [])
|
||||
|
||||
useEffect(() => {
|
||||
if (!input) return
|
||||
if (status === 'success') {
|
||||
@ -151,8 +172,7 @@ export const Footer = ({ data }: Props) => {
|
||||
)
|
||||
}, [show])
|
||||
|
||||
const url =
|
||||
'https://xylm.us20.list-manage.com/subscribe/post?u=97d7d4662c941dd625d4c4261&id=b72fe1118a'
|
||||
const url = 'https://share.hsforms.com/1R-IJiM32SX6_q6CVDX0MVAdabw9'
|
||||
|
||||
return (
|
||||
<>
|
||||
@ -169,7 +189,10 @@ export const Footer = ({ data }: Props) => {
|
||||
>
|
||||
Sign-up for our <br /> Newsletter
|
||||
</Heading>
|
||||
<MailchimpSubscribe
|
||||
|
||||
<HubspotForm
|
||||
portalId="22316985"
|
||||
formId="7e20988-cdf6-497e-bfab-a0950d7d0c54"
|
||||
url={url}
|
||||
// @ts-ignore
|
||||
render={({ subscribe, status, message }) => (
|
||||
|
||||
7
src/types/index.d.ts
vendored
Normal file
7
src/types/index.d.ts
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
export {}
|
||||
|
||||
declare global {
|
||||
interface Window {
|
||||
hbspt: string
|
||||
}
|
||||
}
|
||||
281
yarn.lock
281
yarn.lock
@ -1577,7 +1577,7 @@
|
||||
"clean-stack" "^2.0.0"
|
||||
"indent-string" "^4.0.0"
|
||||
|
||||
"ajv@^6.10.0", "ajv@^6.12.4":
|
||||
"ajv@^6.10.0", "ajv@^6.12.3", "ajv@^6.12.4":
|
||||
"integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="
|
||||
"resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
|
||||
"version" "6.12.6"
|
||||
@ -1746,6 +1746,18 @@
|
||||
"resolved" "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz"
|
||||
"version" "2.0.6"
|
||||
|
||||
"asn1@~0.2.3":
|
||||
"integrity" "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ=="
|
||||
"resolved" "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz"
|
||||
"version" "0.2.6"
|
||||
dependencies:
|
||||
"safer-buffer" "~2.1.0"
|
||||
|
||||
"assert-plus@^1.0.0", "assert-plus@1.0.0":
|
||||
"integrity" "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw=="
|
||||
"resolved" "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
|
||||
"version" "1.0.0"
|
||||
|
||||
"ast-types-flow@^0.0.7":
|
||||
"integrity" "sha1-9wtzXGvKGlycItmCw+Oef+ujva0= sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag=="
|
||||
"resolved" "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz"
|
||||
@ -1766,6 +1778,16 @@
|
||||
"resolved" "https://registry.npmjs.org/auto-bind/-/auto-bind-4.0.0.tgz"
|
||||
"version" "4.0.0"
|
||||
|
||||
"aws-sign2@~0.7.0":
|
||||
"integrity" "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA=="
|
||||
"resolved" "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"
|
||||
"version" "0.7.0"
|
||||
|
||||
"aws4@^1.8.0":
|
||||
"integrity" "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="
|
||||
"resolved" "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz"
|
||||
"version" "1.11.0"
|
||||
|
||||
"axe-core@^4.3.5":
|
||||
"integrity" "sha512-gd1kmb21kwNuWr6BQz8fv6GNECPBnUasepcoLbekws23NVBLODdsClRZ+bQ8+9Uomf3Sm3+Vwn0oYG9NvwnJCw=="
|
||||
"resolved" "https://registry.npmjs.org/axe-core/-/axe-core-4.4.1.tgz"
|
||||
@ -1873,6 +1895,13 @@
|
||||
"resolved" "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"
|
||||
"version" "1.5.1"
|
||||
|
||||
"bcrypt-pbkdf@^1.0.0":
|
||||
"integrity" "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w=="
|
||||
"resolved" "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"
|
||||
"version" "1.0.2"
|
||||
dependencies:
|
||||
"tweetnacl" "^0.14.3"
|
||||
|
||||
"big-integer@^1.6.16":
|
||||
"integrity" "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg=="
|
||||
"resolved" "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz"
|
||||
@ -1892,7 +1921,7 @@
|
||||
"inherits" "^2.0.4"
|
||||
"readable-stream" "^3.4.0"
|
||||
|
||||
"bluebird@^3.7.2":
|
||||
"bluebird@^3.5.0", "bluebird@^3.7.2":
|
||||
"integrity" "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg=="
|
||||
"resolved" "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz"
|
||||
"version" "3.7.2"
|
||||
@ -2033,6 +2062,11 @@
|
||||
"tslib" "^2.0.3"
|
||||
"upper-case-first" "^2.0.2"
|
||||
|
||||
"caseless@~0.12.0":
|
||||
"integrity" "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw=="
|
||||
"resolved" "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz"
|
||||
"version" "0.12.0"
|
||||
|
||||
"chalk@^1.0.0", "chalk@^1.1.3":
|
||||
"integrity" "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A=="
|
||||
"resolved" "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"
|
||||
@ -2286,7 +2320,7 @@
|
||||
"resolved" "https://registry.npmjs.org/colorette/-/colorette-2.0.16.tgz"
|
||||
"version" "2.0.16"
|
||||
|
||||
"combined-stream@^1.0.6", "combined-stream@^1.0.8":
|
||||
"combined-stream@^1.0.6", "combined-stream@^1.0.8", "combined-stream@~1.0.6":
|
||||
"integrity" "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="
|
||||
"resolved" "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"
|
||||
"version" "1.0.8"
|
||||
@ -2354,6 +2388,11 @@
|
||||
"resolved" "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz"
|
||||
"version" "1.0.3"
|
||||
|
||||
"core-util-is@1.0.2":
|
||||
"integrity" "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ=="
|
||||
"resolved" "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"
|
||||
"version" "1.0.2"
|
||||
|
||||
"cosmiconfig-toml-loader@1.0.0":
|
||||
"integrity" "sha512-H/2gurFWVi7xXvCyvsWRLCMekl4tITJcX0QEsDMpzxtuxDyM59xLatYNg4s/k9AA/HdtCYfj2su8mgA0GSDLDA=="
|
||||
"resolved" "https://registry.npmjs.org/cosmiconfig-toml-loader/-/cosmiconfig-toml-loader-1.0.0.tgz"
|
||||
@ -2443,6 +2482,13 @@
|
||||
"resolved" "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz"
|
||||
"version" "1.0.8"
|
||||
|
||||
"dashdash@^1.12.0":
|
||||
"integrity" "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g=="
|
||||
"resolved" "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz"
|
||||
"version" "1.14.1"
|
||||
dependencies:
|
||||
"assert-plus" "^1.0.0"
|
||||
|
||||
"dataloader@2.0.0":
|
||||
"integrity" "sha512-YzhyDAwA4TaQIhM5go+vCLmU0UikghC/t9DTQYZR2M/UvZ1MdOhPezSDZcjj9uqQJOMqjLcpWtyW2iNINdlatQ=="
|
||||
"resolved" "https://registry.npmjs.org/dataloader/-/dataloader-2.0.0.tgz"
|
||||
@ -2692,6 +2738,14 @@
|
||||
"resolved" "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz"
|
||||
"version" "0.2.0"
|
||||
|
||||
"ecc-jsbn@~0.1.1":
|
||||
"integrity" "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw=="
|
||||
"resolved" "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"
|
||||
"version" "0.1.2"
|
||||
dependencies:
|
||||
"jsbn" "~0.1.0"
|
||||
"safer-buffer" "^2.1.0"
|
||||
|
||||
"ecdsa-sig-formatter@1.0.11":
|
||||
"integrity" "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ=="
|
||||
"resolved" "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz"
|
||||
@ -3121,6 +3175,11 @@
|
||||
"resolved" "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz"
|
||||
"version" "2.0.3"
|
||||
|
||||
"extend@~3.0.2":
|
||||
"integrity" "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
|
||||
"resolved" "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz"
|
||||
"version" "3.0.2"
|
||||
|
||||
"external-editor@^3.0.3":
|
||||
"integrity" "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew=="
|
||||
"resolved" "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz"
|
||||
@ -3140,6 +3199,11 @@
|
||||
"resolved" "https://registry.npmjs.org/extract-files/-/extract-files-9.0.0.tgz"
|
||||
"version" "9.0.0"
|
||||
|
||||
"extsprintf@^1.2.0", "extsprintf@1.3.0":
|
||||
"integrity" "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g=="
|
||||
"resolved" "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"
|
||||
"version" "1.3.0"
|
||||
|
||||
"fast-deep-equal@^3.1.1", "fast-deep-equal@^3.1.3", "fast-deep-equal@3.1.3":
|
||||
"integrity" "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
|
||||
"resolved" "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"
|
||||
@ -3284,6 +3348,11 @@
|
||||
dependencies:
|
||||
"tslib" "^2.0.3"
|
||||
|
||||
"forever-agent@~0.6.1":
|
||||
"integrity" "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw=="
|
||||
"resolved" "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz"
|
||||
"version" "0.6.1"
|
||||
|
||||
"form-data-encoder@^1.7.1":
|
||||
"integrity" "sha512-qfqtYan3rxrnCk1VYaA4H+Ms9xdpPqvLZa6xmMgFvhO32x7/3J/ExcTd6qpxM0vH2GdMI+poehyBZvqfMTto8A=="
|
||||
"resolved" "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-1.7.2.tgz"
|
||||
@ -3307,6 +3376,15 @@
|
||||
"combined-stream" "^1.0.8"
|
||||
"mime-types" "^2.1.12"
|
||||
|
||||
"form-data@~2.3.2":
|
||||
"integrity" "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ=="
|
||||
"resolved" "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz"
|
||||
"version" "2.3.3"
|
||||
dependencies:
|
||||
"asynckit" "^0.4.0"
|
||||
"combined-stream" "^1.0.6"
|
||||
"mime-types" "^2.1.12"
|
||||
|
||||
"formdata-node@^4.3.1":
|
||||
"integrity" "sha512-k7lYJyzDOSL6h917favP8j1L0/wNyylzU+x+1w4p5haGVHNlP58dbpdJhiCUsDbWsa9HwEtLp89obQgXl2e0qg=="
|
||||
"resolved" "https://registry.npmjs.org/formdata-node/-/formdata-node-4.3.2.tgz"
|
||||
@ -3410,6 +3488,13 @@
|
||||
"call-bind" "^1.0.2"
|
||||
"get-intrinsic" "^1.1.1"
|
||||
|
||||
"getpass@^0.1.1":
|
||||
"integrity" "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng=="
|
||||
"resolved" "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz"
|
||||
"version" "0.1.7"
|
||||
dependencies:
|
||||
"assert-plus" "^1.0.0"
|
||||
|
||||
"github-from-package@0.0.0":
|
||||
"integrity" "sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4= sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw=="
|
||||
"resolved" "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz"
|
||||
@ -3587,6 +3672,19 @@
|
||||
dependencies:
|
||||
"duplexer" "^0.1.2"
|
||||
|
||||
"har-schema@^2.0.0":
|
||||
"integrity" "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q=="
|
||||
"resolved" "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"
|
||||
"version" "2.0.0"
|
||||
|
||||
"har-validator@~5.1.3":
|
||||
"integrity" "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w=="
|
||||
"resolved" "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz"
|
||||
"version" "5.1.5"
|
||||
dependencies:
|
||||
"ajv" "^6.12.3"
|
||||
"har-schema" "^2.0.0"
|
||||
|
||||
"hard-rejection@^2.1.0":
|
||||
"integrity" "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA=="
|
||||
"resolved" "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz"
|
||||
@ -3684,6 +3782,15 @@
|
||||
"agent-base" "6"
|
||||
"debug" "4"
|
||||
|
||||
"http-signature@~1.2.0":
|
||||
"integrity" "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ=="
|
||||
"resolved" "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"
|
||||
"version" "1.2.0"
|
||||
dependencies:
|
||||
"assert-plus" "^1.0.0"
|
||||
"jsprim" "^1.2.2"
|
||||
"sshpk" "^1.7.0"
|
||||
|
||||
"https-proxy-agent@^5.0.0":
|
||||
"integrity" "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA=="
|
||||
"resolved" "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz"
|
||||
@ -3692,6 +3799,19 @@
|
||||
"agent-base" "6"
|
||||
"debug" "4"
|
||||
|
||||
"hubspot@^2.3.14":
|
||||
"integrity" "sha512-o17t4dZBMiVEdPJloAJCilLRkFQy2yMtjEXSV4jCz7EfDu5wrEeKTYmcd9f8V8qezO3HdeRUAnGv57v1vNZaXg=="
|
||||
"resolved" "https://registry.npmjs.org/hubspot/-/hubspot-2.3.14.tgz"
|
||||
"version" "2.3.14"
|
||||
dependencies:
|
||||
"bottleneck" "^2.19.5"
|
||||
"debug" "^4.1.1"
|
||||
"form-data" "^3.0.0"
|
||||
"lodash" "^4.17.15"
|
||||
"node-fetch" "^2.6.0"
|
||||
"request" "^2.88.2"
|
||||
"request-promise" "^4.2.5"
|
||||
|
||||
"human-signals@^2.1.0":
|
||||
"integrity" "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw=="
|
||||
"resolved" "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz"
|
||||
@ -4011,6 +4131,11 @@
|
||||
dependencies:
|
||||
"has-symbols" "^1.0.2"
|
||||
|
||||
"is-typedarray@~1.0.0":
|
||||
"integrity" "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA=="
|
||||
"resolved" "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"
|
||||
"version" "1.0.0"
|
||||
|
||||
"is-unc-path@^1.0.0":
|
||||
"integrity" "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ=="
|
||||
"resolved" "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz"
|
||||
@ -4065,6 +4190,11 @@
|
||||
"resolved" "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz"
|
||||
"version" "4.0.1"
|
||||
|
||||
"isstream@~0.1.2":
|
||||
"integrity" "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g=="
|
||||
"resolved" "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"
|
||||
"version" "0.1.2"
|
||||
|
||||
"iterall@^1.2.1":
|
||||
"integrity" "sha512-QZ9qOMdF+QLHxy1QIpUHUU1D5pS2CG2P69LF6L6CPjPYA/XMOmKV3PZpawHoAjHNyB0swdVTRxdYT4tbBbxqwg=="
|
||||
"resolved" "https://registry.npmjs.org/iterall/-/iterall-1.3.0.tgz"
|
||||
@ -4087,6 +4217,11 @@
|
||||
dependencies:
|
||||
"argparse" "^2.0.1"
|
||||
|
||||
"jsbn@~0.1.0":
|
||||
"integrity" "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg=="
|
||||
"resolved" "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz"
|
||||
"version" "0.1.1"
|
||||
|
||||
"jsesc@^2.5.1":
|
||||
"integrity" "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="
|
||||
"resolved" "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz"
|
||||
@ -4112,6 +4247,11 @@
|
||||
"resolved" "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"
|
||||
"version" "1.0.0"
|
||||
|
||||
"json-schema@0.4.0":
|
||||
"integrity" "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA=="
|
||||
"resolved" "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz"
|
||||
"version" "0.4.0"
|
||||
|
||||
"json-stable-stringify-without-jsonify@^1.0.1":
|
||||
"integrity" "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="
|
||||
"resolved" "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"
|
||||
@ -4124,6 +4264,11 @@
|
||||
dependencies:
|
||||
"jsonify" "~0.0.0"
|
||||
|
||||
"json-stringify-safe@~5.0.1":
|
||||
"integrity" "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA=="
|
||||
"resolved" "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"
|
||||
"version" "5.0.1"
|
||||
|
||||
"json-to-pretty-yaml@^1.2.2":
|
||||
"integrity" "sha1-9M0L0KXo/h3yWq9boRiwmf2ZLVs= sha512-rvm6hunfCcqegwYaG5T4yKJWxc9FXFgBVrcTZ4XfSVRwa5HA/Xs+vB/Eo9treYYHCeNM0nrSUr82V/M31Urc7A=="
|
||||
"resolved" "https://registry.npmjs.org/json-to-pretty-yaml/-/json-to-pretty-yaml-1.2.2.tgz"
|
||||
@ -4172,6 +4317,16 @@
|
||||
"ms" "^2.1.1"
|
||||
"semver" "^5.6.0"
|
||||
|
||||
"jsprim@^1.2.2":
|
||||
"integrity" "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw=="
|
||||
"resolved" "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz"
|
||||
"version" "1.4.2"
|
||||
dependencies:
|
||||
"assert-plus" "1.0.0"
|
||||
"extsprintf" "1.3.0"
|
||||
"json-schema" "0.4.0"
|
||||
"verror" "1.10.0"
|
||||
|
||||
"jsx-ast-utils@^2.4.1 || ^3.0.0", "jsx-ast-utils@^3.2.1":
|
||||
"integrity" "sha512-HDAyJ4MNQBboGpUnHAVUNJs6X0lh058s6FuixsFGP7MgJYpD6Vasd6nzSG5iIfXu1zAYlHJ/zsOKNlrenTUBnw=="
|
||||
"resolved" "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.2.tgz"
|
||||
@ -4404,7 +4559,7 @@
|
||||
"resolved" "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz"
|
||||
"version" "4.4.2"
|
||||
|
||||
"lodash@^4.17.20", "lodash@^4.17.21", "lodash@^4.17.4", "lodash@~4.17.0":
|
||||
"lodash@^4.17.15", "lodash@^4.17.19", "lodash@^4.17.20", "lodash@^4.17.21", "lodash@^4.17.4", "lodash@~4.17.0":
|
||||
"integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
|
||||
"resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"
|
||||
"version" "4.17.21"
|
||||
@ -4575,7 +4730,7 @@
|
||||
"resolved" "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz"
|
||||
"version" "1.52.0"
|
||||
|
||||
"mime-types@^2.1.12":
|
||||
"mime-types@^2.1.12", "mime-types@~2.1.19":
|
||||
"integrity" "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="
|
||||
"resolved" "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz"
|
||||
"version" "2.1.35"
|
||||
@ -4859,6 +5014,11 @@
|
||||
"resolved" "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz"
|
||||
"version" "1.0.1"
|
||||
|
||||
"oauth-sign@~0.9.0":
|
||||
"integrity" "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="
|
||||
"resolved" "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz"
|
||||
"version" "0.9.0"
|
||||
|
||||
"object-assign@^4.1.0", "object-assign@^4.1.1":
|
||||
"integrity" "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg=="
|
||||
"resolved" "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"
|
||||
@ -5146,6 +5306,11 @@
|
||||
"resolved" "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz"
|
||||
"version" "4.0.0"
|
||||
|
||||
"performance-now@^2.1.0":
|
||||
"integrity" "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow=="
|
||||
"resolved" "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"
|
||||
"version" "2.1.0"
|
||||
|
||||
"picocolors@^1.0.0":
|
||||
"integrity" "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
|
||||
"resolved" "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz"
|
||||
@ -5265,6 +5430,11 @@
|
||||
"object-assign" "^4.1.1"
|
||||
"react-is" "^16.13.1"
|
||||
|
||||
"psl@^1.1.28":
|
||||
"integrity" "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag=="
|
||||
"resolved" "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz"
|
||||
"version" "1.9.0"
|
||||
|
||||
"pump@^3.0.0":
|
||||
"integrity" "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww=="
|
||||
"resolved" "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz"
|
||||
@ -5273,11 +5443,16 @@
|
||||
"end-of-stream" "^1.1.0"
|
||||
"once" "^1.3.1"
|
||||
|
||||
"punycode@^2.1.0":
|
||||
"punycode@^2.1.0", "punycode@^2.1.1":
|
||||
"integrity" "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
|
||||
"resolved" "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"
|
||||
"version" "2.1.1"
|
||||
|
||||
"qs@~6.5.2":
|
||||
"integrity" "sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA=="
|
||||
"resolved" "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz"
|
||||
"version" "6.5.3"
|
||||
|
||||
"querystringify@^2.1.1":
|
||||
"integrity" "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ=="
|
||||
"resolved" "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz"
|
||||
@ -5655,6 +5830,49 @@
|
||||
"resolved" "https://registry.npmjs.org/replaceall/-/replaceall-0.1.6.tgz"
|
||||
"version" "0.1.6"
|
||||
|
||||
"request-promise-core@1.1.4":
|
||||
"integrity" "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw=="
|
||||
"resolved" "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz"
|
||||
"version" "1.1.4"
|
||||
dependencies:
|
||||
"lodash" "^4.17.19"
|
||||
|
||||
"request-promise@^4.2.5":
|
||||
"integrity" "sha512-HCHI3DJJUakkOr8fNoCc73E5nU5bqITjOYFMDrKHYOXWXrgD/SBaC7LjwuPymUprRyuF06UK7hd/lMHkmUXglQ=="
|
||||
"resolved" "https://registry.npmjs.org/request-promise/-/request-promise-4.2.6.tgz"
|
||||
"version" "4.2.6"
|
||||
dependencies:
|
||||
"bluebird" "^3.5.0"
|
||||
"request-promise-core" "1.1.4"
|
||||
"stealthy-require" "^1.1.1"
|
||||
"tough-cookie" "^2.3.3"
|
||||
|
||||
"request@^2.34", "request@^2.88.2":
|
||||
"integrity" "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw=="
|
||||
"resolved" "https://registry.npmjs.org/request/-/request-2.88.2.tgz"
|
||||
"version" "2.88.2"
|
||||
dependencies:
|
||||
"aws-sign2" "~0.7.0"
|
||||
"aws4" "^1.8.0"
|
||||
"caseless" "~0.12.0"
|
||||
"combined-stream" "~1.0.6"
|
||||
"extend" "~3.0.2"
|
||||
"forever-agent" "~0.6.1"
|
||||
"form-data" "~2.3.2"
|
||||
"har-validator" "~5.1.3"
|
||||
"http-signature" "~1.2.0"
|
||||
"is-typedarray" "~1.0.0"
|
||||
"isstream" "~0.1.2"
|
||||
"json-stringify-safe" "~5.0.1"
|
||||
"mime-types" "~2.1.19"
|
||||
"oauth-sign" "~0.9.0"
|
||||
"performance-now" "^2.1.0"
|
||||
"qs" "~6.5.2"
|
||||
"safe-buffer" "^5.1.2"
|
||||
"tough-cookie" "~2.5.0"
|
||||
"tunnel-agent" "^0.6.0"
|
||||
"uuid" "^3.3.2"
|
||||
|
||||
"require-directory@^2.1.1":
|
||||
"integrity" "sha1-jGStX9MNqxyXbiNE/+f3kqam30I= sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q=="
|
||||
"resolved" "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"
|
||||
@ -5768,7 +5986,7 @@
|
||||
dependencies:
|
||||
"tslib" "^2.1.0"
|
||||
|
||||
"safe-buffer@^5.0.1", "safe-buffer@~5.2.0":
|
||||
"safe-buffer@^5.0.1", "safe-buffer@^5.1.2", "safe-buffer@~5.2.0":
|
||||
"integrity" "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
|
||||
"resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"
|
||||
"version" "5.2.1"
|
||||
@ -5778,7 +5996,7 @@
|
||||
"resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"
|
||||
"version" "5.1.2"
|
||||
|
||||
"safer-buffer@>= 2.1.2 < 3":
|
||||
"safer-buffer@^2.0.2", "safer-buffer@^2.1.0", "safer-buffer@>= 2.1.2 < 3", "safer-buffer@~2.1.0":
|
||||
"integrity" "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
|
||||
"resolved" "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"
|
||||
"version" "2.1.2"
|
||||
@ -6047,6 +6265,26 @@
|
||||
dependencies:
|
||||
"tslib" "^2.0.3"
|
||||
|
||||
"sshpk@^1.7.0":
|
||||
"integrity" "sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ=="
|
||||
"resolved" "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz"
|
||||
"version" "1.17.0"
|
||||
dependencies:
|
||||
"asn1" "~0.2.3"
|
||||
"assert-plus" "^1.0.0"
|
||||
"bcrypt-pbkdf" "^1.0.0"
|
||||
"dashdash" "^1.12.0"
|
||||
"ecc-jsbn" "~0.1.1"
|
||||
"getpass" "^0.1.1"
|
||||
"jsbn" "~0.1.0"
|
||||
"safer-buffer" "^2.0.2"
|
||||
"tweetnacl" "~0.14.0"
|
||||
|
||||
"stealthy-require@^1.1.1":
|
||||
"integrity" "sha512-ZnWpYnYugiOVEY5GkcuJK1io5V8QmNYChG62gSit9pQVGErXtrKuPC55ITaVSukmMta5qpMU7vqLt2Lnni4f/g=="
|
||||
"resolved" "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz"
|
||||
"version" "1.1.1"
|
||||
|
||||
"string_decoder@^1.1.1":
|
||||
"integrity" "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA=="
|
||||
"resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"
|
||||
@ -6517,6 +6755,14 @@
|
||||
"resolved" "https://registry.npmjs.org/totalist/-/totalist-1.1.0.tgz"
|
||||
"version" "1.1.0"
|
||||
|
||||
"tough-cookie@^2.3.3", "tough-cookie@~2.5.0":
|
||||
"integrity" "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g=="
|
||||
"resolved" "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz"
|
||||
"version" "2.5.0"
|
||||
dependencies:
|
||||
"psl" "^1.1.28"
|
||||
"punycode" "^2.1.1"
|
||||
|
||||
"tr46@~0.0.3":
|
||||
"integrity" "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw=="
|
||||
"resolved" "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz"
|
||||
@ -6588,6 +6834,11 @@
|
||||
dependencies:
|
||||
"safe-buffer" "^5.0.1"
|
||||
|
||||
"tweetnacl@^0.14.3", "tweetnacl@~0.14.0":
|
||||
"integrity" "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA=="
|
||||
"resolved" "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz"
|
||||
"version" "0.14.5"
|
||||
|
||||
"type-check@^0.4.0", "type-check@~0.4.0":
|
||||
"integrity" "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew=="
|
||||
"resolved" "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz"
|
||||
@ -6752,6 +7003,11 @@
|
||||
"resolved" "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"
|
||||
"version" "1.0.2"
|
||||
|
||||
"uuid@^3.3.2":
|
||||
"integrity" "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
|
||||
"resolved" "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz"
|
||||
"version" "3.4.0"
|
||||
|
||||
"v8-compile-cache@^2.0.3", "v8-compile-cache@^2.3.0":
|
||||
"integrity" "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA=="
|
||||
"resolved" "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz"
|
||||
@ -6775,6 +7031,15 @@
|
||||
"resolved" "https://registry.npmjs.org/value-or-promise/-/value-or-promise-1.0.11.tgz"
|
||||
"version" "1.0.11"
|
||||
|
||||
"verror@1.10.0":
|
||||
"integrity" "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw=="
|
||||
"resolved" "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"
|
||||
"version" "1.10.0"
|
||||
dependencies:
|
||||
"assert-plus" "^1.0.0"
|
||||
"core-util-is" "1.0.2"
|
||||
"extsprintf" "^1.2.0"
|
||||
|
||||
"vhtml@^2.2.0":
|
||||
"integrity" "sha512-TPXrXrxBOslRUVnlVkiAqhoXneiertIg86bdvzionrUYhEuiROvyPZNiiP6GIIJ2Q7oPNVyEtIx8gMAZZE9lCQ=="
|
||||
"resolved" "https://registry.npmjs.org/vhtml/-/vhtml-2.2.0.tgz"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user