Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

After updating npm packages. Error: Could not parse template expression: #1299

Closed
stephenjason89 opened this issue Mar 24, 2022 · 4 comments
Closed
Labels

Comments

@stephenjason89
Copy link

image

Please let me know what to do.
Thanks!

@stephenjason89
Copy link
Author

Here are some of the packages that got upgraded before the error occured.
These are packages that got upgraded from yarn upgrade.
These are not present in yarn outdated

image

image

image

image

image

image

@elevatebart
Copy link
Member

Can you share the code of that template ?

@stephenjason89
Copy link
Author

Sure
Here's
DataInput.vue

<template>
    <div v-frag>
        <TableInput
            :value="parentIndex !== undefined ? models[key][parentIndex] : models[key]"
            :data="data[key]"
            :items="itemList"
            :return-values="!returnObject && returnValues"
            :index="index"
            :disabled-by-parent="{
                value: parentInput.required,
                message: ` - << ${parentInput.label} is a prerequisite >> -`,
            }"
            :parent-index="parentIndex"
            :parent-input="parentInput"
            @input="emitter($event, parentIndex)"
        />
    </div>
</template>

<script>
export default {
    name: 'TableDataInput',
    props: {
        /**
         * Collection of Inputs (use only one)
         * Refer to Input.vue for more details
         * @type {object} data
         * @example
         data: {
                Category: {                     // Key will be used as model name
                    type: 'comboBox',           // Type of Input (refer to Input.vue)

                    // Nested Mutation's connection (default: connect)
                    connection: 'connect',      // Optional

                    required: true,             // Force user to use input
                    method: 'categoryFilter',   // Method in graphql/{Model}.js
                    fieldName: 'categories',    // Override key as fieldName
                    variables: { scope: 'Product' },    // Variables for queries
                    attrs: {
                        // Refer to Input.vue & vuetify documentation for more info
                        label: 'Category*',
                        'item-text': 'name',
                    },
                },
                characteristics: {
                    type: 'select',
                    model: 'Category',          // Used to override key as model name
                    method: 'categoryFilter',   // Method in graphql/Category.js
                    variables: { scope: 'Product', hasCharacteristics: {} },
                    expanded: 'characteristics',
                    attrs: {
                        label: 'Characteristics',
                        multiple: true,
                        'item-text': 'name',
                        chips: true,
                    },
                },
                packageComponents: {
                    type: 'comboBox',           // Type of input
                    addMore: 'components',      // Dynamically add more inputs
                    required: true,

                    // When grouped, use connectionGroup instead of connection
                    connectionGroup: 'upsert',

                    // Grouped under Product->components relationship
                    fieldGroup: 'components',

                    // Override packageComponents as fieldName
                    fieldName: 'component',
                    header: 'Package Component',// Header label before Input
                    model: 'Product',           // client/graphql/Product.js
                    method: 'productFilter',    // Method that will be imported
                    attrs: {
                        label: 'Product Component',
                        'item-text': 'item_code',
                    },
                },
                // Grouped together with packageComponents (Product->components)
                packageComponentsQty: {
                    type: 'textField',
                    addMore: 'components',
                    required: true,
                    connectionGroup: 'upsert',
                    fieldGroup: 'components',
                    fieldName: 'qty',
                    header: 'Package Quantity',
                    attrs: {
                        label: 'Component Qty',
                        type: 'number',
                    },
                },
          },
         */
        data: {
            type: Object,
            required: true,
        },
        /**
         * Automatically declared if v-model was used
         * @type undefined
         */
        value: {
            type: undefined,
            default: null,
        },
        /**
         * Force to return object
         * Only values are returned by default
         * @type {boolean}
         */
        returnObject: {
            type: Boolean,
            default: false,
        },
        /**
         * Return Values
         * Object will be returned if set to false
         * @type {boolean}
         */
        returnValues: {
            type: Boolean,
            default: true,
        },
        /**
         * Used to add variables to the query
         * Usually for query scoping
         * @type {object}
         * @example
         Category: {
                    type: 'select',
                    method: 'categoryFilter',
                    variables: { scope: 'Product' },
                    attrs: {
                        label: 'Category',
                        multiple: true,
                        'item-text': 'name',
                    },
                },
         */
        variables: {
            type: Object,
            default: () => ({}),
        },
        index: {
            type: Number,
            default: undefined,
        },
        parentIndex: {
            type: Number,
            default: undefined,
        },
    },
    computed: {
        key() {
            return Object.keys(this.data)?.[0]
        },
        models() {
            return this.value ?? {}
        },
        parentInput() {
            const name = this.data[this.key]?.parent?.name ?? this.data[this.key].parent
            let model = this.models?.[name]
            if (Array.isArray(model)) model = model[this.index]

            return {
                id: model?.id || model,
                name,
                label: this.data[this.key]?.parent?.label ?? name,
                model,
                required: this.data[this.key]?.parent?.required && !this.models?.[name],
            }
        },
        itemList() {
            let items = this.data[this.key].items || this.data[this.key].attrs?.items
            const itemKey = this.data[this.key]?.itemKey
            if (items && itemKey) {
                items = items[itemKey]
            }

            const newItems = []
            if (this.data[this.key].expanded && items) {
                for (const item of items) {
                    newItems.push({ header: item.name }, { divider: true })
                    newItems.push(...item[this.data[this.key].expanded])
                }
                items = newItems
            }

            if (this.parentInput.id) {
                return items?.filter((item) => {
                    return this.parentInput.id.includes(item[this.parentInput.name.toLowerCase() + '_id'])
                })
            }

            return items
        },
    },

    async created() {
        if (!Object.entries(this.data)?.[0]) console.error('Data is an empty object')
        const [key, data] = Object.entries(this.data)?.[0]
        const method = data.method
        let model = (data.model ?? key).toLowerCase()
        model = model.charAt(0).toUpperCase() + model.slice(1)

        try {
            const { [method]: gql } = await import(`~/graphql/${model}`)
            this.$apollo.addSmartQuery(key + 'Items', {
                query: gql,
                variables() {
                    return data.variables ?? {}
                },
                update(data) {
                    this.$set(this.data[key], 'items', Object.values(data)[0])
                    return Object.values(data)[0]
                },
            })
        } catch (e) {
            console.error('Check if you have graphql/' + model + '.js', e)
        }
    },
    methods: {
        emitter(newValue, parentIndex) {
            const models = {}
            if (parentIndex !== undefined) models[this.key][parentIndex] = newValue
            else models[this.key] = newValue

            // Set parent input value if null when child input changes
            if (!this.parentInput?.id && this.data[this.key]?.parent) {
                const parentId = this.data[this.key]?.items?.find((i) => i.id === newValue)?.[
                    this.parentInput.name?.toLowerCase() + '_id'
                ]
                if (parentId) models[this.parentInput.name] = parentId
            }

            // Clear child input value when parent input changes
            if (this.data[this.key]?._child) models[this.data[this.key]._child] = null

            // Set all changes to :value or v-model variable
            for (const [key, value] of Object.entries(models)) this.$set(this.value, key, value)
        },
    },
}
</script>

@stephenjason89
Copy link
Author

That's working before i do a yarn upgrade.

Here's the yarn upgrade log

stephenjasonwang@Stephens-MacBook-Pro erp % yarn upgrade
yarn upgrade v1.22.17
[1/4] 🔍  Resolving packages...
warning @nuxtjs/apollo > vue-cli-plugin-apollo > subscriptions-transport-ws@0.9.19: The `subscriptions-transport-ws` package is no longer maintained. We recommend you use `graphql-ws` instead. For help migrating Apollo software to `graphql-ws`, see https://www.apollographql.com/docs/apollo-server/data/subscriptions/#switching-from-subscriptions-transport-ws    For general help using `graphql-ws`, see https://github.com/enisdenjo/graphql-ws/blob/master/README.md
warning @nuxtjs/apollo > vue-cli-plugin-apollo > apollo-server-express > subscriptions-transport-ws@0.9.19: The `subscriptions-transport-ws` package is no longer maintained. We recommend you use `graphql-ws` instead. For help migrating Apollo software to `graphql-ws`, see https://www.apollographql.com/docs/apollo-server/data/subscriptions/#switching-from-subscriptions-transport-ws    For general help using `graphql-ws`, see https://github.com/enisdenjo/graphql-ws/blob/master/README.md
warning @nuxtjs/apollo > vue-cli-plugin-apollo > graphql-tools@6.2.6: This package has been deprecated and now it only exports makeExecutableSchema.\nAnd it will no longer receive updates.\nWe recommend you to migrate to scoped packages such as @graphql-tools/schema, @graphql-tools/utils and etc.\nCheck out https://www.graphql-tools.com to learn what package you should use instead
warning @nuxtjs/apollo > vue-cli-plugin-apollo > apollo-server-express > graphql-tools@4.0.8: This package has been deprecated and now it only exports makeExecutableSchema.\nAnd it will no longer receive updates.\nWe recommend you to migrate to scoped packages such as @graphql-tools/schema, @graphql-tools/utils and etc.\nCheck out https://www.graphql-tools.com to learn what package you should use instead
warning @nuxtjs/apollo > vue-cli-plugin-apollo > apollo-server-express > apollo-server-core > graphql-tools@4.0.8: This package has been deprecated and now it only exports makeExecutableSchema.\nAnd it will no longer receive updates.\nWe recommend you to migrate to scoped packages such as @graphql-tools/schema, @graphql-tools/utils and etc.\nCheck out https://www.graphql-tools.com to learn what package you should use instead
warning @nuxtjs/apollo > vue-cli-plugin-apollo > apollo-server-express > apollo-server-core > subscriptions-transport-ws@0.9.19: The `subscriptions-transport-ws` package is no longer maintained. We recommend you use `graphql-ws` instead. For help migrating Apollo software to `graphql-ws`, see https://www.apollographql.com/docs/apollo-server/data/subscriptions/#switching-from-subscriptions-transport-ws    For general help using `graphql-ws`, see https://github.com/enisdenjo/graphql-ws/blob/master/README.md
warning @nuxtjs/apollo > vue-cli-plugin-apollo > apollo > cli-ux@5.6.3: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
warning @nuxtjs/apollo > vue-cli-plugin-apollo > apollo > @oclif/plugin-autocomplete > cli-ux@5.6.7: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
warning @nuxtjs/apollo > vue-cli-plugin-apollo > apollo > @oclif/plugin-not-found > cli-ux@4.9.3: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
warning @nuxtjs/apollo > vue-cli-plugin-apollo > apollo > @oclif/plugin-plugins > cli-ux@5.6.7: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
warning @nuxtjs/apollo > vue-cli-plugin-apollo > apollo-server-express > graphql-tools > uuid@3.4.0: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
warning @nuxtjs/apollo > vue-cli-plugin-apollo > graphql-tools > @graphql-tools/url-loader > subscriptions-transport-ws@0.9.19: The `subscriptions-transport-ws` package is no longer maintained. We recommend you use `graphql-ws` instead. For help migrating Apollo software to `graphql-ws`, see https://www.apollographql.com/docs/apollo-server/data/subscriptions/#switching-from-subscriptions-transport-ws    For general help using `graphql-ws`, see https://github.com/enisdenjo/graphql-ws/blob/master/README.md
warning @nuxtjs/apollo > vue-cli-plugin-apollo > apollo-server-express > apollo-server-core > apollo-tracing@0.15.0: The `apollo-tracing` package is no longer part of Apollo Server 3. See https://www.apollographql.com/docs/apollo-server/migration/#tracing for details
warning @nuxtjs/apollo > vue-cli-plugin-apollo > apollo-server-express > apollo-server-core > graphql-extensions@0.15.0: The `graphql-extensions` API has been removed from Apollo Server 3. Use the plugin API instead: https://www.apollographql.com/docs/apollo-server/integrations/plugins/
warning @nuxtjs/apollo > vue-cli-plugin-apollo > apollo-server-express > apollo-server-core > apollo-cache-control@0.14.0: The functionality provided by the `apollo-cache-control` package is built in to `apollo-server-core` starting with Apollo Server 3. See https://www.apollographql.com/docs/apollo-server/migration/#cachecontrol for details.
warning nuxt > @nuxt/babel-preset-app > core-js@2.6.12: core-js@<3.4 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.
warning nuxt > @nuxt/webpack > webpack-hot-middleware > querystring@0.2.1: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
warning nuxt > @nuxt/webpack > webpack > watchpack > watchpack-chokidar2 > chokidar@2.1.8: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies
warning nuxt > @nuxt/webpack > webpack > watchpack > watchpack-chokidar2 > chokidar > fsevents@1.2.13: fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.
warning nuxt > @nuxt/webpack > webpack > node-libs-browser > url > querystring@0.2.0: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
warning nuxt > @nuxt/webpack > webpack > micromatch > snapdragon > source-map-resolve@0.5.3: See https://github.com/lydell/source-map-resolve#deprecated
warning nuxt > @nuxt/webpack > cssnano > cssnano-preset-default > postcss-svgo > svgo@1.3.2: This SVGO version is no longer supported. Upgrade to v2.x.x.
warning nuxt > @nuxt/webpack > postcss-preset-env > postcss-color-functional-notation > postcss-values-parser > flatten@1.0.3: flatten is deprecated in favor of utility frameworks such as lodash.
warning nuxt > @nuxt/webpack > webpack > micromatch > snapdragon > source-map-resolve > resolve-url@0.2.1: https://github.com/lydell/resolve-url#deprecated
warning nuxt > @nuxt/webpack > webpack > micromatch > snapdragon > source-map-resolve > source-map-url@0.4.1: See https://github.com/lydell/source-map-url#deprecated
warning nuxt > @nuxt/webpack > webpack > micromatch > snapdragon > source-map-resolve > urix@0.1.0: Please see https://github.com/lydell/urix#deprecated
warning vuex-persistedstate@4.1.0: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
warning @nuxt/types > @types/webpack > @types/anymatch@3.0.0: This is a stub types definition. anymatch provides its own type definitions, so you do not need this installed.
warning @nuxt/types > @types/autoprefixer > @types/browserslist@4.15.0: This is a stub types definition. browserslist provides its own type definitions, so you do not need this installed.
info There appears to be trouble with your network connection. Retrying...
warning eslint-loader@4.0.2: This loader has been deprecated. Please use eslint-webpack-plugin
warning nuxt-build-optimisations@1.0.7: module has been renamed to nuxt-webpack-optimisations, see https://github.com/harlan-zw/nuxt-webpack-optimisations/releases/tag/2.0.0
warning stylelint > @stylelint/postcss-markdown@0.36.2: Use the original unforked package instead: postcss-markdown
warning vue-styleguidist > kleur@2.0.2: Please upgrade to kleur@3 or migrate to 'ansi-colors' if you prefer the old syntax. Visit <https://github.com/lukeed/kleur/releases/tag/v3.0.0\> for migration path(s).
warning vue-styleguidist > copy-webpack-plugin > webpack-log > uuid@3.4.0: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
warning vue-styleguidist > webpack-dev-server > chokidar@2.1.8: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies
[2/4] 🚚  Fetching packages...
[3/4] 🔗  Linking dependencies...
warning "@nuxtjs/apollo > vue-cli-plugin-apollo@0.22.2" has unmet peer dependency "@vue/cli-shared-utils@^3.0.0 || ^4.0.0-0".
warning " > apollo-cache-inmemory@1.6.6" has unmet peer dependency "graphql@^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0".
warning " > apollo-link@1.2.14" has unmet peer dependency "graphql@^0.11.3 || ^0.12.3 || ^0.13.0 || ^14.0.0 || ^15.0.0".
warning " > apollo-link-http@1.5.17" has unmet peer dependency "graphql@^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0".
warning " > graphql-tag@2.12.6" has unmet peer dependency "graphql@^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0".
warning "@nuxtjs/apollo > vue-cli-plugin-apollo > ts-node@8.10.2" has unmet peer dependency "typescript@>=2.7".
warning "apollo-link-batch-http > apollo-link-http-common@0.2.16" has unmet peer dependency "graphql@^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0".
warning "@nuxtjs/apollo > vue-cli-plugin-apollo > apollo > apollo-language-server > @apollographql/graphql-language-service-interface@2.0.2" has incorrect peer dependency "graphql@^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0".
warning "@nuxtjs/apollo > vue-cli-plugin-apollo > apollo > apollo-language-server > @apollographql/graphql-language-service-interface > @apollographql/graphql-language-service-parser@2.0.2" has incorrect peer dependency "graphql@^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0".
warning "@nuxtjs/apollo > vue-cli-plugin-apollo > apollo > apollo-language-server > @apollographql/graphql-language-service-interface > @apollographql/graphql-language-service-utils@2.0.2" has incorrect peer dependency "graphql@^0.12.0 || ^0.13.0 || ^14.0.0".
warning "@nuxtjs/apollo > vue-cli-plugin-apollo > apollo > apollo-language-server > @apollographql/graphql-language-service-interface > @apollographql/graphql-language-service-types@2.0.2" has incorrect peer dependency "graphql@^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0".
warning " > @nuxtjs/composition-api@0.32.0" has unmet peer dependency "@nuxt/vue-app@^2.15".
warning " > @nuxtjs/composition-api@0.32.0" has unmet peer dependency "vue@^2".
warning "@nuxtjs/composition-api > unplugin-vue2-script-setup@0.9.3" has unmet peer dependency "@vue/runtime-dom@^3.2.26".
warning "@nuxtjs/composition-api > @vue/composition-api@1.4.9" has unmet peer dependency "vue@>= 2.5 < 3".
warning " > @vue/apollo-composable@4.0.0-alpha.16" has unmet peer dependency "@apollo/client@^3.4.13".
warning " > @vue/apollo-composable@4.0.0-alpha.16" has unmet peer dependency "graphql@>=15".
warning " > @vue/apollo-composable@4.0.0-alpha.16" has unmet peer dependency "vue@^2.6.0 || ^3.1.0".
warning "@vue/apollo-composable > vue-demi@0.12.4" has unmet peer dependency "vue@^3.0.0-0 || ^2.6.0".
warning "@vue/apollo-composable > ts-essentials@9.1.2" has unmet peer dependency "typescript@>=4.1.0".
warning " > apollo-link-batch-http@1.2.14" has unmet peer dependency "graphql@^0.11.0 || ^0.12.3 || ^0.13.0 || ^14.0.0 || ^15.0.0".
warning " > apollo3-cache-persist@0.14.0" has unmet peer dependency "@apollo/client@^3.2.5".
warning "nuxt > @nuxt/components@2.2.1" has unmet peer dependency "consola@*".
warning "vuetify-loader > file-loader@6.2.0" has unmet peer dependency "webpack@^4.0.0 || ^5.0.0".
warning "nuxt-compress > compression-webpack-plugin@6.1.1" has unmet peer dependency "webpack@^4.0.0 || ^5.0.0".
warning " > overlayscrollbars-vue@0.2.2" has unmet peer dependency "vue@^2.6.0".
warning " > vue-frag@1.4.0" has unmet peer dependency "vue@^2.6.0".
warning " > vuetify@2.6.4" has unmet peer dependency "vue@^2.6.4".
warning " > vuetify-loader@1.7.3" has unmet peer dependency "vue-template-compiler@^2.6.10".
warning " > vuetify-loader@1.7.3" has unmet peer dependency "webpack@^4.0.0 || ^5.0.0".
warning " > vuex-persistedstate@4.1.0" has unmet peer dependency "vuex@^3.0 || ^4.0.0-rc".
warning "@nuxt/types > sass-loader@10.1.1" has unmet peer dependency "webpack@^4.36.0 || ^5.0.0".
warning "@nuxt/typescript-build > fork-ts-checker-webpack-plugin@6.5.0" has unmet peer dependency "webpack@>= 4".
warning "@nuxt/typescript-build > ts-loader@8.3.0" has unmet peer dependency "webpack@*".
warning "@nuxtjs/eslint-config-typescript > eslint-import-resolver-typescript@2.7.0" has unmet peer dependency "eslint-plugin-import@*".
warning "@nuxtjs/eslint-config-typescript > @typescript-eslint/eslint-plugin > tsutils@3.21.0" has unmet peer dependency "typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta".
warning "@nuxtjs/eslint-config-typescript > @nuxtjs/eslint-config > eslint-config-standard@16.0.3" has incorrect peer dependency "eslint@^7.12.1".
warning "@nuxtjs/eslint-config-typescript > @nuxtjs/eslint-config > eslint-config-standard@16.0.3" has incorrect peer dependency "eslint-plugin-promise@^4.2.1 || ^5.0.0".
warning "@nuxtjs/eslint-module > eslint-webpack-plugin@2.6.0" has unmet peer dependency "webpack@^4.0.0 || ^5.0.0".
warning " > @nuxtjs/stylelint-module@4.1.0" has unmet peer dependency "webpack@^4.0.0 || ^5.0.0".
warning "@nuxtjs/stylelint-module > stylelint-webpack-plugin@2.3.2" has unmet peer dependency "webpack@^4.0.0 || ^5.0.0".
warning "@nuxtjs/tailwindcss > @nuxt/postcss8 > css-loader@5.2.7" has unmet peer dependency "webpack@^4.27.0 || ^5.0.0".
warning "@nuxtjs/tailwindcss > @nuxt/postcss8 > postcss-loader@4.3.0" has unmet peer dependency "webpack@^4.0.0 || ^5.0.0".
warning "@nuxtjs/vuetify > sass-loader@10.2.1" has unmet peer dependency "webpack@^4.36.0 || ^5.0.0".
warning " > @vue/test-utils@1.3.0" has unmet peer dependency "vue@2.x".
warning " > @vue/test-utils@1.3.0" has unmet peer dependency "vue-template-compiler@^2.x".
warning " > eslint-loader@4.0.2" has incorrect peer dependency "eslint@^6.0.0 || ^7.0.0".
warning " > eslint-loader@4.0.2" has unmet peer dependency "webpack@^4.0.0 || ^5.0.0".
warning "nuxt-build-optimisations > speed-measure-webpack-plugin@1.5.0" has unmet peer dependency "webpack@^1 || ^2 || ^3 || ^4 || ^5".
warning "nuxt-build-optimisations > esbuild-loader@2.18.0" has unmet peer dependency "webpack@^4.40.0 || ^5.0.0".
warning " > require-extension-hooks-vue@3.0.0" has unmet peer dependency "vue-template-compiler@2.5.x".
warning " > vue-styleguidist@4.44.22" has unmet peer dependency "vue@>=2.0.0".
warning " > vue-styleguidist@4.44.22" has unmet peer dependency "vue-loader@>=14.0.0".
warning " > vue-styleguidist@4.44.22" has unmet peer dependency "vue-template-compiler@>=2.0.0".
warning " > vue-styleguidist@4.44.22" has unmet peer dependency "webpack@>=4".
warning "vue-styleguidist > css-loader@2.1.1" has unmet peer dependency "webpack@^4.0.0".
warning "vue-styleguidist > terser-webpack-plugin@2.3.8" has unmet peer dependency "webpack@^4.0.0 || ^5.0.0".
warning "vue-styleguidist > copy-webpack-plugin@5.1.2" has unmet peer dependency "webpack@^4.0.0 || ^5.0.0".
warning "vue-styleguidist > clean-webpack-plugin@3.0.0" has unmet peer dependency "webpack@*".
warning "vue-styleguidist > mini-html-webpack-plugin@3.1.3" has unmet peer dependency "webpack@>=4".
warning "vue-styleguidist > style-loader@1.3.0" has unmet peer dependency "webpack@^4.0.0 || ^5.0.0".
warning "vue-styleguidist > react-codemirror2@7.2.1" has incorrect peer dependency "react@>=15.5 <=16.x".
warning "vue-styleguidist > react-simple-code-editor@0.11.0" has incorrect peer dependency "react@^16.0.0".
warning "vue-styleguidist > react-simple-code-editor@0.11.0" has incorrect peer dependency "react-dom@^16.0.0".
warning "vue-styleguidist > react-styleguidist > copy-webpack-plugin@6.4.1" has unmet peer dependency "webpack@^4.37.0 || ^5.0.0".
warning "vue-styleguidist > react-styleguidist > react-simple-code-editor@0.10.0" has incorrect peer dependency "react@^16.0.0".
warning "vue-styleguidist > react-styleguidist > react-simple-code-editor@0.10.0" has incorrect peer dependency "react-dom@^16.0.0".
warning "vue-styleguidist > vue-inbrowser-compiler-utils@4.44.22" has unmet peer dependency "vue@>=2".
warning "vue-styleguidist > vue-inbrowser-compiler@4.44.22" has unmet peer dependency "vue@>=2".
warning "vue-styleguidist > webpack-dev-server@3.11.3" has unmet peer dependency "webpack@^4.0.0 || ^5.0.0".
warning "vue-styleguidist > webpack-dev-server > webpack-dev-middleware@3.7.3" has unmet peer dependency "webpack@^4.0.0 || ^5.0.0".
warning "vue-styleguidist > vue-inbrowser-compiler-utils > vue-inbrowser-compiler-demi@4.44.22" has unmet peer dependency "vue@>=2".
warning " > worker-plugin@5.0.1" has unmet peer dependency "webpack@>= 4".
[4/4] 🔨  Rebuilding all packages...
success Saved lockfile.
success Saved 1422 new dependencies.
info Direct dependencies
├─ @capacitor/android@3.4.3
├─ @capacitor/cli@3.4.3
├─ @capacitor/core@3.4.3
├─ @capacitor/ios@3.4.3
├─ @mdi/js@6.6.95
├─ @nuxt/image@0.6.2
├─ @nuxt/types@2.15.8
├─ @nuxt/typescript-build@2.1.0
├─ @nuxtjs/apollo@4.0.1-rc.5
├─ @nuxtjs/axios@5.13.6
├─ @nuxtjs/composition-api@0.32.0
├─ @nuxtjs/eslint-config-typescript@9.0.0
├─ @nuxtjs/eslint-module@3.0.2
├─ @nuxtjs/proxy@2.1.0
├─ @nuxtjs/router@1.7.0
├─ @nuxtjs/stylelint-module@4.1.0
├─ @nuxtjs/tailwindcss@5.0.2
├─ @nuxtjs/vuetify@1.12.3
├─ @types/cookie@0.4.1
├─ @types/js-cookie@3.0.1
├─ @types/worker-plugin@5.0.1
├─ @vue/apollo-composable@4.0.0-alpha.16
├─ @vue/test-utils@1.3.0
├─ animejs@3.2.1
├─ apexcharts@3.33.2
├─ apollo-link-batch-http@1.2.14
├─ apollo3-cache-persist@0.14.0
├─ axios@0.26.1
├─ colorize-filter@1.0.3
├─ cookie@0.4.2
├─ core-js@3.21.1
├─ cross-env@7.0.3
├─ eslint-config-prettier@8.5.0
├─ eslint-loader@4.0.2
├─ eslint-plugin-nuxt@3.2.0
├─ eslint-plugin-prettier@4.0.0
├─ eslint@8.11.0
├─ face-api.js@0.22.2
├─ husky@7.0.4
├─ izitoast@1.4.0
├─ js-cookie@3.0.1
├─ jspdf-autotable@3.5.23
├─ jspdf@2.5.1
├─ leaflet-geosearch@3.6.0
├─ leaflet@1.7.1
├─ lint-staged@12.3.7
├─ localforage@1.10.0
├─ nuxt-build-optimisations@1.0.7
├─ nuxt-compress@5.0.0
├─ nuxt-social-meta@1.0.0
├─ nuxt@2.15.8
├─ overlayscrollbars-vue@0.2.2
├─ overlayscrollbars@1.13.1
├─ peerjs@1.3.2
├─ prettier@2.6.0
├─ pusher-js@5.1.1
├─ require-extension-hooks-babel@1.0.0
├─ require-extension-hooks-vue@3.0.0
├─ require-extension-hooks@0.3.3
├─ siege@0.2.0
├─ spinkit@2.0.1
├─ stylelint-config-prettier@9.0.3
├─ stylelint-config-standard@22.0.0
├─ stylelint@13.13.1
├─ viewerjs@1.10.4
├─ vue-apexcharts@1.6.2
├─ vue-excel-xlsx@1.2.2
├─ vue-frag@1.4.0
├─ vue-lazy-hydration@2.0.0-beta.4
├─ vue-styleguidist@4.44.22
├─ vue-template-babel-compiler@1.1.3
├─ vue-tour@2.0.0
├─ vue2-dropzone@3.6.0
├─ vuetify-loader@1.7.3
├─ vuetify@2.6.4
├─ vuex-persistedstate@4.1.0
└─ worker-plugin@5.0.1
info All dependencies
├─ @ampproject/remapping@2.1.2
├─ @antfu/utils@0.4.0
├─ @apollo/client@3.5.10
├─ @apollo/federation@0.27.0
├─ @apollo/protobufjs@1.2.2
├─ @apollographql/graphql-language-service-interface@2.0.2
├─ @apollographql/graphql-language-service-parser@2.0.2
├─ @apollographql/graphql-language-service-utils@2.0.2
├─ @apollographql/graphql-upload-8-fork@8.1.3
├─ @babel/code-frame@7.16.7
├─ @babel/compat-data@7.17.7
├─ @babel/core@7.17.8
├─ @babel/generator@7.17.7
├─ @babel/helper-builder-binary-assignment-operator-visitor@7.16.7
├─ @babel/helper-compilation-targets@7.17.7
├─ @babel/helper-explode-assignable-expression@7.16.7
├─ @babel/helper-get-function-arity@7.16.7
├─ @babel/helper-module-imports@7.16.7
├─ @babel/helper-plugin-utils@7.16.7
├─ @babel/helper-wrap-function@7.16.8
├─ @babel/helpers@7.17.8
├─ @babel/highlight@7.16.10
├─ @babel/parser@7.17.8
├─ @babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.16.7
├─ @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.16.7
├─ @babel/plugin-proposal-async-generator-functions@7.16.8
├─ @babel/plugin-proposal-class-properties@7.16.7
├─ @babel/plugin-proposal-class-static-block@7.17.6
├─ @babel/plugin-proposal-decorators@7.17.8
├─ @babel/plugin-proposal-dynamic-import@7.16.7
├─ @babel/plugin-proposal-export-namespace-from@7.16.7
├─ @babel/plugin-proposal-json-strings@7.16.7
├─ @babel/plugin-proposal-logical-assignment-operators@7.16.7
├─ @babel/plugin-proposal-nullish-coalescing-operator@7.16.7
├─ @babel/plugin-proposal-numeric-separator@7.16.7
├─ @babel/plugin-proposal-object-rest-spread@7.17.3
├─ @babel/plugin-proposal-optional-catch-binding@7.16.7
├─ @babel/plugin-proposal-optional-chaining@7.16.7
├─ @babel/plugin-proposal-private-methods@7.16.11
├─ @babel/plugin-proposal-private-property-in-object@7.16.7
├─ @babel/plugin-proposal-unicode-property-regex@7.16.7
├─ @babel/plugin-syntax-class-properties@7.12.13
├─ @babel/plugin-syntax-decorators@7.17.0
├─ @babel/plugin-syntax-flow@7.16.7
├─ @babel/plugin-syntax-top-level-await@7.14.5
├─ @babel/plugin-transform-arrow-functions@7.16.7
├─ @babel/plugin-transform-async-to-generator@7.16.8
├─ @babel/plugin-transform-block-scoped-functions@7.16.7
├─ @babel/plugin-transform-block-scoping@7.16.7
├─ @babel/plugin-transform-classes@7.16.7
├─ @babel/plugin-transform-computed-properties@7.16.7
├─ @babel/plugin-transform-destructuring@7.17.7
├─ @babel/plugin-transform-dotall-regex@7.16.7
├─ @babel/plugin-transform-duplicate-keys@7.16.7
├─ @babel/plugin-transform-exponentiation-operator@7.16.7
├─ @babel/plugin-transform-flow-strip-types@7.16.7
├─ @babel/plugin-transform-for-of@7.16.7
├─ @babel/plugin-transform-function-name@7.16.7
├─ @babel/plugin-transform-literals@7.16.7
├─ @babel/plugin-transform-member-expression-literals@7.16.7
├─ @babel/plugin-transform-modules-amd@7.16.7
├─ @babel/plugin-transform-modules-commonjs@7.17.7
├─ @babel/plugin-transform-modules-systemjs@7.17.8
├─ @babel/plugin-transform-modules-umd@7.16.7
├─ @babel/plugin-transform-named-capturing-groups-regex@7.16.8
├─ @babel/plugin-transform-new-target@7.16.7
├─ @babel/plugin-transform-object-super@7.16.7
├─ @babel/plugin-transform-parameters@7.16.7
├─ @babel/plugin-transform-property-literals@7.16.7
├─ @babel/plugin-transform-react-display-name@7.16.7
├─ @babel/plugin-transform-react-jsx@7.17.3
├─ @babel/plugin-transform-regenerator@7.16.7
├─ @babel/plugin-transform-reserved-words@7.16.7
├─ @babel/plugin-transform-runtime@7.17.0
├─ @babel/plugin-transform-shorthand-properties@7.16.7
├─ @babel/plugin-transform-spread@7.16.7
├─ @babel/plugin-transform-sticky-regex@7.16.7
├─ @babel/plugin-transform-template-literals@7.16.7
├─ @babel/plugin-transform-typeof-symbol@7.16.7
├─ @babel/plugin-transform-unicode-escapes@7.16.7
├─ @babel/plugin-transform-unicode-regex@7.16.7
├─ @babel/preset-env@7.16.11
├─ @babel/preset-modules@0.1.5
├─ @babel/runtime@7.17.8
├─ @babel/standalone@7.17.8
├─ @babel/traverse@7.17.3
├─ @babel/types@7.17.0
├─ @bcoe/v8-coverage@0.2.3
├─ @capacitor/android@3.4.3
├─ @capacitor/cli@3.4.3
├─ @capacitor/core@3.4.3
├─ @capacitor/ios@3.4.3
├─ @endemolshinegroup/cosmiconfig-typescript-loader@1.0.2
├─ @eslint/eslintrc@1.2.1
├─ @gar/promisify@1.1.3
├─ @graphql-tools/batch-delegate@6.2.6
├─ @graphql-tools/batch-execute@7.1.2
├─ @graphql-tools/code-file-loader@6.3.1
├─ @graphql-tools/git-loader@6.2.6
├─ @graphql-tools/github-loader@6.2.5
├─ @graphql-tools/graphql-file-loader@6.2.7
├─ @graphql-tools/import@6.6.9
├─ @graphql-tools/json-file-loader@6.2.6
├─ @graphql-tools/links@6.2.5
├─ @graphql-tools/load-files@6.5.3
├─ @graphql-tools/load@6.2.8
├─ @graphql-tools/mock@6.2.4
├─ @graphql-tools/module-loader@6.2.7
├─ @graphql-tools/relay-operation-optimizer@6.4.5
├─ @graphql-tools/resolvers-composition@6.4.5
├─ @graphql-tools/stitch@6.2.4
├─ @graphql-tools/url-loader@6.10.1
├─ @graphql-tools/utils@7.10.0
├─ @graphql-typed-document-node/core@3.1.1
├─ @humanwhocodes/config-array@0.9.5
├─ @humanwhocodes/object-schema@1.2.1
├─ @ionic/cli-framework-output@2.2.3
├─ @ionic/utils-array@2.1.5
├─ @ionic/utils-fs@3.1.5
├─ @ionic/utils-object@2.1.5
├─ @ionic/utils-process@2.1.8
├─ @ionic/utils-stream@3.1.5
├─ @ionic/utils-subprocess@2.1.9
├─ @josephg/resolvable@1.0.1
├─ @jridgewell/resolve-uri@3.0.5
├─ @jridgewell/sourcemap-codec@1.4.11
├─ @jridgewell/trace-mapping@0.3.4
├─ @koa/router@9.4.0
├─ @mdi/js@6.6.95
├─ @microsoft/fetch-event-source@2.0.1
├─ @nodelib/fs.scandir@2.1.5
├─ @nodelib/fs.stat@2.0.5
├─ @nodelib/fs.walk@1.2.8
├─ @npmcli/fs@1.1.1
├─ @npmcli/move-file@1.1.2
├─ @nuxt/builder@2.15.8
├─ @nuxt/cli@2.15.8
├─ @nuxt/components@2.2.1
├─ @nuxt/core@2.15.8
├─ @nuxt/friendly-errors-webpack-plugin@2.5.2
├─ @nuxt/generator@2.15.8
├─ @nuxt/image@0.6.2
├─ @nuxt/kit@3.0.0-27468803.23e7afb
├─ @nuxt/loading-screen@2.0.4
├─ @nuxt/opencollective@0.3.2
├─ @nuxt/postcss8@1.1.3
├─ @nuxt/schema@3.0.0-27468803.23e7afb
├─ @nuxt/telemetry@1.3.6
├─ @nuxt/types@2.15.8
├─ @nuxt/typescript-build@2.1.0
├─ @nuxtjs/apollo@4.0.1-rc.5
├─ @nuxtjs/axios@5.13.6
├─ @nuxtjs/composition-api@0.32.0
├─ @nuxtjs/eslint-config-typescript@9.0.0
├─ @nuxtjs/eslint-config@9.0.0
├─ @nuxtjs/eslint-module@3.0.2
├─ @nuxtjs/proxy@2.1.0
├─ @nuxtjs/router@1.7.0
├─ @nuxtjs/stylelint-module@4.1.0
├─ @nuxtjs/tailwindcss@5.0.2
├─ @nuxtjs/vuetify@1.12.3
├─ @nuxtjs/youch@4.2.3
├─ @oclif/config@1.18.3
├─ @oclif/plugin-autocomplete@0.3.0
├─ @oclif/plugin-help@3.2.3
├─ @oclif/plugin-not-found@1.2.4
├─ @oclif/plugin-plugins@1.10.1
├─ @oclif/plugin-warn-if-update-available@1.7.0
├─ @polka/url@1.0.0-next.21
├─ @popperjs/core@2.11.4
├─ @protobufjs/aspromise@1.1.2
├─ @protobufjs/base64@1.1.2
├─ @protobufjs/codegen@2.0.4
├─ @protobufjs/eventemitter@1.1.0
├─ @protobufjs/fetch@1.1.0
├─ @protobufjs/float@1.0.2
├─ @protobufjs/path@1.1.2
├─ @protobufjs/pool@1.1.0
├─ @protobufjs/utf8@1.1.0
├─ @samverschueren/stream-to-observable@0.3.1
├─ @sindresorhus/is@0.14.0
├─ @stylelint/postcss-css-in-js@0.37.2
├─ @stylelint/postcss-markdown@0.36.2
├─ @szmarczak/http-timer@1.1.2
├─ @tensorflow/tfjs-core@1.7.0
├─ @tippyjs/react@4.1.0
├─ @types/accepts@1.3.5
├─ @types/anymatch@3.0.0
├─ @types/autoprefixer@9.7.2
├─ @types/babel__core@7.1.14
├─ @types/babel__generator@7.6.4
├─ @types/babel__template@7.4.1
├─ @types/babel__traverse@7.14.2
├─ @types/body-parser@1.19.2
├─ @types/browserslist@4.15.0
├─ @types/clean-css@4.2.5
├─ @types/compression@1.7.0
├─ @types/content-disposition@0.5.4
├─ @types/cookie@0.4.1
├─ @types/cors@2.8.10
├─ @types/eslint@7.29.0
├─ @types/estree@0.0.51
├─ @types/etag@1.8.0
├─ @types/express-serve-static-core@4.17.28
├─ @types/file-loader@5.0.0
├─ @types/fs-capacitor@2.0.0
├─ @types/glob@7.2.0
├─ @types/html-minifier-terser@5.1.2
├─ @types/html-minifier@4.0.0
├─ @types/http-assert@1.5.3
├─ @types/http-errors@1.8.2
├─ @types/http-proxy@1.17.8
├─ @types/istanbul-lib-coverage@2.0.4
├─ @types/js-cookie@3.0.1
├─ @types/json-schema@7.0.10
├─ @types/json5@0.0.29
├─ @types/koa-compose@3.2.5
├─ @types/less@3.0.2
├─ @types/long@4.0.1
├─ @types/mdast@3.0.10
├─ @types/minimatch@3.0.5
├─ @types/minimist@1.2.2
├─ @types/node-fetch@2.6.1
├─ @types/node-sass@4.11.2
├─ @types/normalize-package-data@2.4.1
├─ @types/offscreencanvas@2019.3.0
├─ @types/optimize-css-assets-webpack-plugin@5.0.3
├─ @types/pug@2.0.4
├─ @types/q@1.5.5
├─ @types/raf@3.4.0
├─ @types/range-parser@1.2.4
├─ @types/relateurl@0.2.29
├─ @types/sass-loader@8.0.1
├─ @types/sass@1.43.1
├─ @types/seedrandom@2.4.27
├─ @types/serve-static@1.13.9
├─ @types/source-list-map@0.1.2
├─ @types/terser-webpack-plugin@4.2.1
├─ @types/throttle-debounce@2.1.0
├─ @types/webgl-ext@0.0.30
├─ @types/webgl2@0.0.4
├─ @types/webpack-bundle-analyzer@3.9.3
├─ @types/webpack-dev-middleware@4.1.2
├─ @types/webpack-hot-middleware@2.25.4
├─ @types/webpack@4.41.32
├─ @types/websocket@1.0.2
├─ @types/worker-plugin@5.0.1
├─ @types/ws@7.4.7
├─ @types/zen-observable@0.8.3
├─ @typescript-eslint/eslint-plugin@5.16.0
├─ @typescript-eslint/parser@5.16.0
├─ @typescript-eslint/type-utils@5.16.0
├─ @vue/apollo-composable@4.0.0-alpha.16
├─ @vue/babel-preset-jsx@1.2.4
├─ @vue/babel-sugar-composition-api-inject-h@1.2.1
├─ @vue/babel-sugar-composition-api-render-instance@1.2.4
├─ @vue/babel-sugar-functional-vue@1.2.2
├─ @vue/babel-sugar-inject-h@1.2.2
├─ @vue/babel-sugar-v-model@1.2.3
├─ @vue/babel-sugar-v-on@1.2.3
├─ @vue/compiler-sfc@3.2.31
├─ @vue/compiler-ssr@3.2.31
├─ @vue/component-compiler-utils@2.6.0
├─ @vue/composition-api@1.4.9
├─ @vue/reactivity-transform@3.2.31
├─ @vue/test-utils@1.3.0
├─ @vxna/mini-html-webpack-template@1.0.0
├─ @webassemblyjs/floating-point-hex-parser@1.9.0
├─ @webassemblyjs/helper-code-frame@1.9.0
├─ @webassemblyjs/helper-fsm@1.9.0
├─ @webassemblyjs/helper-wasm-section@1.9.0
├─ @webassemblyjs/wasm-edit@1.9.0
├─ @webassemblyjs/wasm-opt@1.9.0
├─ @wry/equality@0.1.11
├─ @xtuc/ieee754@1.2.0
├─ abort-controller@3.0.0
├─ accepts@1.3.8
├─ acorn-dynamic-import@4.0.0
├─ acorn-jsx@5.3.2
├─ acorn-node@1.8.2
├─ acorn-walk@8.2.0
├─ address@1.1.2
├─ adler-32@1.2.0
├─ ajv-errors@1.0.1
├─ animejs@3.2.1
├─ ansi-align@3.0.1
├─ ansi-colors@3.2.4
├─ ansicolors@0.3.2
├─ any-observable@0.3.0
├─ anymatch@3.1.2
├─ apexcharts@3.33.2
├─ apollo-cache-control@0.14.0
├─ apollo-cache@1.3.5
├─ apollo-client@2.6.10
├─ apollo-codegen-flow@0.38.7
├─ apollo-codegen-scala@0.39.7
├─ apollo-codegen-swift@0.40.7
├─ apollo-codegen-typescript@0.40.7
├─ apollo-graphql@0.9.5
├─ apollo-link-batch-http@1.2.14
├─ apollo-link-batch@1.1.15
├─ apollo-link-context@1.0.20
├─ apollo-link-error@1.1.13
├─ apollo-link-persisted-queries@0.2.5
├─ apollo-link-state@0.4.2
├─ apollo-link-ws@1.0.20
├─ apollo-server-core@2.25.3
├─ apollo-server-errors@2.5.0
├─ apollo-server-express@2.25.3
├─ apollo-tracing@0.15.0
├─ apollo-upload-client@13.0.0
├─ apollo@2.33.9
├─ apollo3-cache-persist@0.14.0
├─ aproba@1.2.0
├─ arch@2.2.0
├─ are-we-there-yet@1.1.7
├─ arg@5.0.1
├─ argparse@1.0.10
├─ arr-flatten@1.1.0
├─ array-flatten@1.1.1
├─ array-includes@3.1.4
├─ array-uniq@1.0.3
├─ array.prototype.flat@1.2.5
├─ asap@2.0.6
├─ asn1.js@5.4.1
├─ assert-never@1.2.1
├─ assert@1.5.0
├─ assign-symbols@1.0.0
├─ async-each@1.0.3
├─ async-limiter@1.0.1
├─ async-retry@1.3.3
├─ async@2.6.3
├─ at-least-node@1.0.0
├─ autoprefixer@10.4.4
├─ await-to-js@2.1.1
├─ axios-retry@3.2.4
├─ axios@0.26.1
├─ babel-loader@8.2.4
├─ babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0
├─ babel-preset-fbjs@3.4.0
├─ babel-walk@3.0.0-canary-5
├─ backo2@1.0.2
├─ bail@1.0.5
├─ base@0.11.2
├─ base64-arraybuffer@1.0.2
├─ base64-js@1.5.1
├─ batch@0.6.1
├─ big-integer@1.6.51
├─ binary-extensions@2.2.0
├─ bindings@1.5.0
├─ bl@4.1.0
├─ bluebird@3.7.2
├─ body-parser@1.19.2
├─ bonjour@3.5.0
├─ boolbase@1.0.0
├─ boxen@5.1.2
├─ bplist-parser@0.3.1
├─ braces@2.3.2
├─ brorand@1.1.0
├─ browserify-aes@1.2.0
├─ browserify-cipher@1.0.1
├─ browserify-des@1.0.2
├─ browserify-rsa@4.1.0
├─ browserify-sign@4.2.1
├─ browserify-zlib@0.2.0
├─ browserslist@4.20.2
├─ bser@2.1.1
├─ btoa@1.2.1
├─ buble@0.20.0
├─ buffer-crc32@0.2.13
├─ buffer-indexof@1.1.1
├─ buffer-json@2.0.0
├─ buffer-xor@1.0.3
├─ buffer@5.7.1
├─ builtin-modules@3.2.0
├─ builtin-status-codes@3.0.0
├─ busboy@0.3.1
├─ byline@5.0.0
├─ c8@7.11.0
├─ cache-base@1.0.1
├─ cache-content-type@1.0.1
├─ cache-loader@4.1.0
├─ cacheable-request@6.1.0
├─ caller-callsite@2.0.0
├─ caller-path@2.0.0
├─ callsite@1.0.0
├─ callsites@3.1.0
├─ camel-case@4.1.2
├─ camelcase-css@2.0.1
├─ camelcase-keys@6.2.2
├─ canvg@3.0.10
├─ cfb@1.2.1
├─ character-entities-legacy@1.1.4
├─ character-entities@1.2.4
├─ character-parser@2.2.0
├─ character-reference-invalid@1.1.4
├─ charcodes@0.2.0
├─ chardet@0.7.0
├─ chokidar@3.5.3
├─ chownr@1.1.4
├─ chrome-trace-event@1.0.3
├─ ci-info@3.3.0
├─ class-utils@0.3.6
├─ classnames@2.3.1
├─ clean-css@4.2.4
├─ clean-regexp@1.0.0
├─ clear-module@4.1.2
├─ cli-boxes@2.2.1
├─ cli-progress@3.10.0
├─ cli-spinners@2.6.1
├─ cli-truncate@3.1.0
├─ cli-width@3.0.0
├─ clipboard-copy@3.2.0
├─ clipboardy@3.0.0
├─ clone-regexp@2.2.0
├─ clone-response@1.0.2
├─ clone@1.0.4
├─ clsx@1.1.1
├─ co@4.6.0
├─ code-point-at@1.1.0
├─ codemirror@5.65.2
├─ codepage@1.14.0
├─ collection-visit@1.0.0
├─ color-convert@1.9.3
├─ color-name@1.1.4
├─ color-string@1.9.0
├─ color@4.2.1
├─ colorize-filter@1.0.3
├─ colors@0.6.2
├─ common-dir@2.0.2
├─ common-sequence@1.0.2
├─ compressible@2.0.18
├─ compression-webpack-plugin@6.1.1
├─ concat-map@0.0.1
├─ concat-stream@1.6.2
├─ condense-newlines@0.2.1
├─ config-chain@1.1.13
├─ configstore@5.0.1
├─ connect-history-api-fallback@1.6.0
├─ console-browserify@1.2.0
├─ console-control-strings@1.1.0
├─ constant-case@3.0.4
├─ constants-browserify@1.0.0
├─ content-disposition@0.5.4
├─ convert-source-map@1.8.0
├─ cookie-signature@1.0.6
├─ cookie@0.4.2
├─ cookiejar@2.1.3
├─ copy-concurrently@1.0.5
├─ copy-descriptor@0.1.1
├─ copy-webpack-plugin@5.1.2
├─ core-js-compat@3.21.1
├─ core-js-pure@3.21.1
├─ core-js@3.21.1
├─ core-util-is@1.0.3
├─ cors@2.8.5
├─ crc@3.8.0
├─ create-ecdh@4.0.4
├─ create-hmac@1.1.7
├─ cross-env@7.0.3
├─ crypto-browserify@3.12.0
├─ crypto-random-string@2.0.0
├─ css-blank-pseudo@0.1.4
├─ css-color-names@0.0.4
├─ css-declaration-sorter@4.0.1
├─ css-has-pseudo@0.10.0
├─ css-initials@0.3.1
├─ css-line-break@2.1.0
├─ css-loader@4.3.0
├─ css-prefers-color-scheme@3.1.1
├─ css-select-base-adapter@0.1.1
├─ css-tree@1.0.0-alpha.37
├─ css-what@5.1.0
├─ cssdb@4.4.0
├─ cssfilter@0.0.10
├─ cssnano-preset-default@4.0.8
├─ cssnano-util-raw-cache@4.0.1
├─ cssnano-util-same-parent@4.0.1
├─ cssnano@4.1.11
├─ csso@4.2.0
├─ csstype@3.0.11
├─ cuint@0.2.2
├─ cyclist@1.0.1
├─ data-uri-to-buffer@4.0.0
├─ date-fns@1.30.1
├─ de-indent@1.0.2
├─ decache@4.6.1
├─ decamelize-keys@1.1.0
├─ decompress-response@6.0.0
├─ deep-equal@1.1.1
├─ deep-extend@0.6.0
├─ deep-is@0.1.4
├─ default-gateway@4.2.0
├─ defaults@1.0.3
├─ defer-to-connect@1.1.3
├─ define-lazy-prop@2.0.0
├─ defined@1.0.0
├─ delayed-stream@1.0.0
├─ delegates@1.0.0
├─ deprecated-decorator@0.1.6
├─ des.js@1.0.1
├─ detect-browser@5.3.0
├─ detect-indent@5.0.0
├─ detect-libc@2.0.1
├─ detect-port-alt@1.1.6
├─ detective@5.2.0
├─ devalue@2.0.1
├─ dicer@0.3.0
├─ didyoumean@1.2.2
├─ diff@4.0.2
├─ diffie-hellman@5.0.3
├─ dlv@1.1.3
├─ dns-equal@1.0.0
├─ dns-packet@1.3.4
├─ dns-txt@2.0.2
├─ doctypes@1.1.0
├─ dom-converter@0.2.0
├─ dom-event-types@1.1.0
├─ dom-serializer@1.3.2
├─ domain-browser@1.2.0
├─ domhandler@4.3.1
├─ dompurify@2.3.6
├─ domutils@2.8.0
├─ dotenv@8.6.0
├─ dropzone@5.9.3
├─ duplexer@0.1.2
├─ duplexify@3.7.1
├─ eastasianwidth@0.2.0
├─ editorconfig@0.15.3
├─ electron-to-chromium@1.4.92
├─ elegant-spinner@1.0.1
├─ elementtree@0.1.7
├─ emoji-regex@8.0.0
├─ encodeurl@1.0.2
├─ end-of-stream@1.4.4
├─ enhanced-resolve@4.5.0
├─ env-ci@5.4.1
├─ env-paths@2.2.1
├─ errno@0.1.8
├─ error-stack-parser@2.0.7
├─ es-abstract@1.19.1
├─ es-to-primitive@1.2.1
├─ es6-error@4.1.1
├─ es6-object-assign@1.1.0
├─ esbuild-darwin-64@0.14.27
├─ esbuild-loader@2.18.0
├─ esbuild@0.14.27
├─ escape-goat@2.1.1
├─ escodegen@1.14.3
├─ eslint-config-prettier@8.5.0
├─ eslint-config-standard@16.0.3
├─ eslint-import-resolver-node@0.3.6
├─ eslint-import-resolver-typescript@2.7.0
├─ eslint-loader@4.0.2
├─ eslint-module-utils@2.7.3
├─ eslint-plugin-es@3.0.1
├─ eslint-plugin-import@2.25.4
├─ eslint-plugin-jest@26.1.3
├─ eslint-plugin-node@11.1.0
├─ eslint-plugin-nuxt@3.2.0
├─ eslint-plugin-prettier@4.0.0
├─ eslint-plugin-promise@6.0.0
├─ eslint-plugin-unicorn@41.0.1
├─ eslint-scope@7.1.1
├─ eslint-webpack-plugin@2.6.0
├─ eslint@8.11.0
├─ esm@3.2.25
├─ estraverse@4.3.0
├─ estree-to-babel@3.2.1
├─ etag@1.8.1
├─ event-target-shim@5.0.1
├─ eventemitter3@3.1.2
├─ events@3.3.0
├─ eventsource-polyfill@0.9.6
├─ eventsource@1.1.0
├─ evp_bytestokey@1.0.3
├─ execa@5.1.1
├─ execall@2.0.0
├─ exit@0.1.2
├─ expand-brackets@2.1.4
├─ expand-template@2.0.3
├─ extend@3.0.2
├─ external-editor@3.1.0
├─ extglob@2.0.4
├─ extract-css-chunks-webpack-plugin@4.9.0
├─ extract-files@9.0.0
├─ face-api.js@0.22.2
├─ fast-deep-equal@3.1.3
├─ fast-diff@1.2.0
├─ fast-glob@3.2.11
├─ fast-levenshtein@2.0.6
├─ fastest-levenshtein@1.0.12
├─ fastparse@1.1.2
├─ fastq@1.13.0
├─ faye-websocket@0.11.4
├─ fb-watchman@2.0.1
├─ fbjs-css-vars@1.0.2
├─ fd-slicer@1.1.0
├─ fetch-blob@3.1.5
├─ fflate@0.4.8
├─ file-uri-to-path@1.0.0
├─ filesize@8.0.7
├─ fill-range@4.0.0
├─ filter-obj@1.1.0
├─ finalhandler@1.1.2
├─ flat-cache@3.0.4
├─ flat@5.0.2
├─ flatted@3.2.5
├─ flatten@1.0.3
├─ flush-write-stream@1.1.1
├─ follow-redirects@1.14.9
├─ for-each@0.3.3
├─ for-in@1.0.2
├─ foreground-child@2.0.0
├─ fork-ts-checker-webpack-plugin@6.5.0
├─ form-data@3.0.0
├─ formdata-polyfill@4.0.10
├─ forwarded@0.2.0
├─ frac@1.1.2
├─ fraction.js@4.2.0
├─ fresh@0.5.2
├─ from2@2.3.0
├─ fromentries@1.3.2
├─ fs-capacitor@2.0.4
├─ fs-constants@1.0.0
├─ fs-memo@1.2.0
├─ fs-monkey@1.0.3
├─ fsevents@2.3.2
├─ gauge@2.7.4
├─ gaze@1.1.3
├─ generic-names@1.0.3
├─ gensync@1.0.0-beta.2
├─ get-own-enumerable-property-symbols@3.0.2
├─ get-port-please@2.4.3
├─ get-stdin@8.0.0
├─ get-stream@4.1.0
├─ get-symbol-description@1.0.0
├─ get-value@2.0.6
├─ git-config-path@2.0.0
├─ git-parse@1.0.5
├─ git-rev-sync@3.0.1
├─ git-url-parse@11.6.0
├─ github-from-package@0.0.0
├─ github-slugger@1.4.0
├─ gittar@0.1.1
├─ glob-parent@5.1.2
├─ global-agent@2.2.0
├─ global-dirs@3.0.0
├─ global-prefix@3.0.0
├─ globalthis@1.0.2
├─ globjoin@0.1.4
├─ globule@1.3.3
├─ gonzales-pe@4.3.0
├─ got@9.6.0
├─ graceful-fs@4.2.9
├─ graphql-anywhere@4.2.7
├─ graphql-extensions@0.15.0
├─ graphql-subscriptions@1.2.1
├─ graphql-ws@4.9.0
├─ handle-thing@2.0.1
├─ hard-rejection@2.1.0
├─ hard-source-webpack-plugin@0.13.1
├─ has-ansi@2.0.0
├─ has-unicode@2.0.1
├─ has-value@1.0.0
├─ has-yarn@2.1.0
├─ hash.js@1.1.7
├─ hasha@5.2.2
├─ header-case@2.0.4
├─ hex-color-regex@1.1.0
├─ hmac-drbg@1.0.1
├─ hoist-non-react-statics@3.3.2
├─ hosted-git-info@4.1.0
├─ hpack.js@2.1.6
├─ hsl-regex@1.0.0
├─ hsla-regex@1.0.0
├─ html-entities@1.4.0
├─ html-escaper@2.0.2
├─ html-minifier-terser@5.1.1
├─ html-minifier@4.0.0
├─ html-webpack-plugin@4.5.2
├─ html2canvas@1.4.1
├─ htmlparser2@5.0.1
├─ http-assert@1.5.0
├─ http-cache-semantics@4.1.0
├─ http-deceiver@1.2.7
├─ http-parser-js@0.5.6
├─ http-proxy-middleware@1.3.1
├─ http-proxy@1.18.1
├─ http-shutdown@1.2.2
├─ https-browserify@1.0.0
├─ human-signals@2.1.0
├─ husky@7.0.4
├─ hyphenate-style-name@1.0.4
├─ iconv-lite@0.4.24
├─ icss-replace-symbols@1.1.0
├─ icss-utils@4.1.1
├─ ieee754@1.2.1
├─ ignore-by-default@1.0.1
├─ image-meta@0.1.1
├─ immediate@3.0.6
├─ immer@9.0.12
├─ immutable@3.7.6
├─ import-cwd@2.1.0
├─ import-from@3.0.0
├─ import-lazy@4.0.0
├─ import-local@2.0.0
├─ inquirer@7.3.3
├─ internal-ip@4.3.0
├─ internal-slot@1.0.3
├─ interpret@1.4.0
├─ ip-regex@2.1.0
├─ ip@1.1.5
├─ ipaddr.js@1.9.1
├─ ipx@0.9.4
├─ is-absolute-url@3.0.3
├─ is-accessor-descriptor@1.0.0
├─ is-alphabetical@1.0.4
├─ is-alphanumerical@1.0.4
├─ is-arguments@1.1.1
├─ is-arrayish@0.2.1
├─ is-bigint@1.0.4
├─ is-binary-path@2.1.0
├─ is-boolean-object@1.1.2
├─ is-builtin-module@3.1.0
├─ is-callable@1.2.4
├─ is-ci@2.0.0
├─ is-color-stop@1.1.0
├─ is-core-module@2.8.1
├─ is-data-descriptor@1.0.0
├─ is-descriptor@1.0.2
├─ is-docker@2.2.1
├─ is-expression@4.0.0
├─ is-extglob@2.1.1
├─ is-generator-function@1.0.10
├─ is-hexadecimal@1.0.4
├─ is-https@4.0.0
├─ is-in-browser@1.1.3
├─ is-installed-globally@0.4.0
├─ is-interactive@1.0.0
├─ is-invalid-path@0.1.0
├─ is-negative-zero@2.0.2
├─ is-npm@5.0.0
├─ is-number-object@1.0.6
├─ is-obj@1.0.1
├─ is-observable@1.1.0
├─ is-path-cwd@2.2.0
├─ is-path-in-cwd@2.1.0
├─ is-path-inside@2.1.0
├─ is-plain-obj@1.1.0
├─ is-regex@1.1.4
├─ is-resolvable@1.1.0
├─ is-retry-allowed@2.2.0
├─ is-root@2.1.0
├─ is-shared-array-buffer@1.0.1
├─ is-symbol@1.0.4
├─ is-unicode-supported@0.1.0
├─ is-valid-path@0.1.1
├─ is-weakref@1.0.2
├─ is-whitespace@0.3.0
├─ is-windows@1.0.2
├─ is-yarn-global@0.3.0
├─ isarray@1.0.0
├─ isomorphic-ws@4.0.1
├─ istanbul-lib-coverage@3.2.0
├─ istanbul-reports@3.1.4
├─ iterall@1.3.0
├─ izitoast@1.4.0
├─ java-properties@1.0.2
├─ javascript-stringify@1.6.0
├─ joycon@3.1.1
├─ js-base64@2.6.4
├─ js-beautify@1.14.0
├─ js-cookie@3.0.1
├─ js-tokens@4.0.0
├─ json-buffer@3.0.0
├─ json-parse-even-better-errors@2.3.1
├─ json-schema-traverse@0.4.1
├─ json-stable-stringify-without-jsonify@1.0.1
├─ json-stringify-safe@5.0.1
├─ json5@2.2.1
├─ jsonc-parser@3.0.0
├─ jspdf-autotable@3.5.23
├─ jspdf@2.5.1
├─ jss-plugin-camel-case@10.9.0
├─ jss-plugin-compose@10.9.0
├─ jss-plugin-default-unit@10.9.0
├─ jss-plugin-global@10.9.0
├─ jss-plugin-isolate@10.9.0
├─ jss-plugin-nested@10.9.0
├─ jstransformer@1.0.0
├─ jump.js@1.0.2
├─ keygrip@1.1.0
├─ keyv@3.1.0
├─ killable@1.0.1
├─ knitwork@0.1.1
├─ known-css-properties@0.21.0
├─ koa-convert@2.0.0
├─ koa-send@5.0.1
├─ koa-static@5.0.0
├─ koa@2.13.4
├─ last-call-webpack-plugin@3.0.0
├─ latest-version@5.1.0
├─ launch-editor-middleware@2.3.0
├─ launch-editor@2.3.0
├─ leaflet-geosearch@3.6.0
├─ leaflet@1.7.1
├─ leven@2.1.0
├─ lie@3.1.1
├─ lilconfig@2.0.4
├─ lines-and-columns@1.2.4
├─ lint-staged@12.3.7
├─ listhen@0.2.6
├─ listify@1.0.3
├─ listr-silent-renderer@1.1.1
├─ listr-update-renderer@0.5.0
├─ listr-verbose-renderer@0.5.0
├─ listr@0.14.3
├─ listr2@4.0.5
├─ load-json-file@5.3.0
├─ loader-runner@2.4.0
├─ local-pkg@0.4.1
├─ localforage@1.10.0
├─ locate-path@3.0.0
├─ lodash.get@4.4.2
├─ lodash.identity@3.0.0
├─ lodash.kebabcase@4.1.1
├─ lodash.memoize@4.1.2
├─ lodash.merge@4.6.2
├─ lodash.pickby@4.6.0
├─ lodash.sortby@4.7.0
├─ lodash.templatesettings@4.2.0
├─ lodash.xorby@4.7.0
├─ log-symbols@4.1.0
├─ log-update@4.0.0
├─ loglevel@1.8.0
├─ long@4.0.0
├─ longest-streak@2.0.4
├─ lower-case@2.0.2
├─ lowercase-keys@1.0.1
├─ make-error@1.3.6
├─ map-age-cleaner@0.1.3
├─ map-obj@1.0.1
├─ map-visit@1.0.0
├─ markdown-to-jsx@6.11.4
├─ matcher@3.0.0
├─ mathml-tag-names@2.1.3
├─ mdast-util-from-markdown@0.8.5
├─ mdast-util-to-markdown@0.6.5
├─ mdn-data@2.0.4
├─ media-typer@0.3.0
├─ mem@8.1.1
├─ memfs@3.4.1
├─ meow@9.0.0
├─ merge-descriptors@1.0.1
├─ meros@1.1.4
├─ methods@1.1.2
├─ micromark@2.11.4
├─ miller-rabin@4.0.1
├─ mime-db@1.52.0
├─ mime-types@2.1.35
├─ mime@2.6.0
├─ mimic-fn@2.1.0
├─ min-indent@1.0.1
├─ minimist-options@4.1.0
├─ minizlib@2.1.2
├─ mississippi@3.0.0
├─ mixin-deep@1.3.2
├─ mkdirp-classic@0.5.3
├─ mri@1.2.0
├─ mrmime@1.0.0
├─ ms@2.1.3
├─ multicast-dns-service-types@1.1.0
├─ multicast-dns@6.2.3
├─ mustache@2.3.2
├─ nan@2.15.0
├─ nanomatch@1.2.13
├─ napi-build-utils@1.0.2
├─ native-run@1.5.0
├─ negotiator@0.6.3
├─ nice-try@1.0.5
├─ node-abi@3.8.0
├─ node-addon-api@4.3.0
├─ node-dir@0.1.17
├─ node-domexception@1.0.0
├─ node-fetch@2.6.7
├─ node-forge@0.10.0
├─ node-html-parser@3.3.6
├─ node-int64@0.4.0
├─ node-libs-browser@2.2.1
├─ node-object-hash@1.4.2
├─ node-releases@2.0.2
├─ node-res@5.0.1
├─ nodemon@2.0.15
├─ nopt@5.0.0
├─ normalize-package-data@3.0.3
├─ normalize-selector@0.2.0
├─ normalize-url@1.9.1
├─ npmlog@4.1.2
├─ nth-check@2.0.1
├─ nullthrows@1.1.1
├─ num2fraction@1.2.2
├─ number-is-nan@1.0.1
├─ nuxt-build-optimisations@1.0.7
├─ nuxt-compress@5.0.0
├─ nuxt-social-meta@1.0.0
├─ nuxt@2.15.8
├─ object-copy@0.1.0
├─ object-hash@2.2.0
├─ object-inspect@1.12.0
├─ object-is@1.1.5
├─ object-path@0.11.8
├─ object.assign@4.1.2
├─ object.getownpropertydescriptors@2.1.3
├─ object.values@1.1.5
├─ obuf@1.1.2
├─ ohmyfetch@0.4.15
├─ on-headers@1.0.2
├─ once@1.4.0
├─ only@0.0.2
├─ open@7.4.2
├─ opener@1.5.2
├─ opn@5.5.0
├─ optimism@0.10.3
├─ optimize-css-assets-webpack-plugin@5.0.8
├─ optionator@0.9.1
├─ ora@4.1.1
├─ original@1.0.2
├─ os-browserify@0.3.0
├─ os-tmpdir@1.0.2
├─ overlayscrollbars-vue@0.2.2
├─ overlayscrollbars@1.13.1
├─ p-cancelable@1.1.0
├─ p-defer@1.0.0
├─ p-finally@1.0.0
├─ p-locate@3.0.0
├─ p-retry@3.0.1
├─ p-try@2.2.0
├─ package-json@6.5.0
├─ pako@1.0.11
├─ parallel-transform@1.2.0
├─ param-case@3.0.4
├─ parent-module@1.0.1
├─ parse-asn1@5.1.6
├─ parse-git-config@3.0.0
├─ parse-path@4.0.3
├─ parse-url@6.0.0
├─ parseurl@1.3.3
├─ pascalcase@0.1.1
├─ password-prompt@1.1.2
├─ path-browserify@0.0.1
├─ path-case@3.0.4
├─ path-dirname@1.0.2
├─ path-is-absolute@1.0.1
├─ path-is-inside@1.0.2
├─ path-key@2.0.1
├─ path-parse@1.0.7
├─ path-to-regexp@0.1.7
├─ peerjs-js-binarypack@1.0.1
├─ peerjs@1.3.2
├─ pend@1.2.0
├─ performance-now@2.1.0
├─ picomatch@2.3.1
├─ pidtree@0.5.0
├─ pinkie-promise@2.0.1
├─ pinkie@2.0.4
├─ pkg-types@0.3.2
├─ pkg-up@3.1.0
├─ plist@3.0.5
├─ pnp-webpack-plugin@1.7.0
├─ posix-character-classes@0.1.1
├─ postcss-attribute-case-insensitive@4.0.2
├─ postcss-calc@7.0.5
├─ postcss-color-functional-notation@2.0.1
├─ postcss-color-gray@5.0.0
├─ postcss-color-hex-alpha@5.0.3
├─ postcss-color-mod-function@3.0.3
├─ postcss-color-rebeccapurple@4.0.1
├─ postcss-colormin@4.0.3
├─ postcss-convert-values@4.0.1
├─ postcss-custom-media@7.0.8
├─ postcss-custom-properties@8.0.11
├─ postcss-custom-selectors@5.1.2
├─ postcss-dir-pseudo-class@5.0.0
├─ postcss-discard-comments@4.0.2
├─ postcss-discard-duplicates@4.0.2
├─ postcss-discard-empty@4.0.1
├─ postcss-discard-overridden@4.0.1
├─ postcss-double-position-gradients@1.0.0
├─ postcss-env-function@2.0.2
├─ postcss-focus-visible@4.0.0
├─ postcss-focus-within@3.0.0
├─ postcss-font-variant@4.0.1
├─ postcss-gap-properties@2.0.0
├─ postcss-html@0.36.0
├─ postcss-image-set-function@3.0.1
├─ postcss-import@12.0.1
├─ postcss-initial@3.0.4
├─ postcss-lab-function@2.0.1
├─ postcss-less@3.1.4
├─ postcss-load-config@3.1.3
├─ postcss-loader@3.0.0
├─ postcss-logical@3.0.0
├─ postcss-media-minmax@4.0.0
├─ postcss-media-query-parser@0.2.3
├─ postcss-merge-longhand@4.0.11
├─ postcss-merge-rules@4.0.3
├─ postcss-minify-font-values@4.0.2
├─ postcss-minify-gradients@4.0.2
├─ postcss-minify-params@4.0.2
├─ postcss-minify-selectors@4.0.2
├─ postcss-modules-local-by-default@3.0.3
├─ postcss-modules-scope@2.2.0
├─ postcss-modules-sync@1.0.0
├─ postcss-modules-values@3.0.0
├─ postcss-nesting@7.0.1
├─ postcss-normalize-charset@4.0.1
├─ postcss-normalize-display-values@4.0.2
├─ postcss-normalize-positions@4.0.2
├─ postcss-normalize-repeat-style@4.0.2
├─ postcss-normalize-string@4.0.2
├─ postcss-normalize-timing-functions@4.0.2
├─ postcss-normalize-unicode@4.0.1
├─ postcss-normalize-url@4.0.1
├─ postcss-normalize-whitespace@4.0.2
├─ postcss-ordered-values@4.1.2
├─ postcss-overflow-shorthand@2.0.0
├─ postcss-page-break@2.0.0
├─ postcss-place@4.0.1
├─ postcss-preset-env@6.7.1
├─ postcss-pseudo-class-any-link@6.0.0
├─ postcss-reduce-initial@4.0.3
├─ postcss-reduce-transforms@4.0.2
├─ postcss-replace-overflow-wrap@3.0.0
├─ postcss-resolve-nested-selector@0.1.1
├─ postcss-safe-parser@4.0.2
├─ postcss-sass@0.4.4
├─ postcss-scss@2.1.1
├─ postcss-selector-matches@4.0.0
├─ postcss-selector-not@4.0.1
├─ postcss-svgo@4.0.3
├─ postcss-syntax@0.36.2
├─ postcss-unique-selectors@4.0.1
├─ postcss-url@8.0.0
├─ postcss-value-parser@3.3.1
├─ prebuild-install@7.0.1
├─ prepend-http@1.0.4
├─ prettier-linter-helpers@1.0.0
├─ prettier@2.6.0
├─ pretty-bytes@5.6.0
├─ pretty-error@2.1.2
├─ pretty-time@1.1.0
├─ pretty@2.0.0
├─ printj@1.3.1
├─ prismjs@1.27.0
├─ private@0.1.8
├─ process-nextick-args@2.0.1
├─ process@0.11.10
├─ promise@7.3.1
├─ prompts@2.4.2
├─ prop-types@15.8.1
├─ proper-lockfile@4.1.2
├─ proto-list@1.2.4
├─ proxy-addr@2.0.7
├─ prr@1.0.1
├─ pseudomap@1.0.2
├─ pstree.remy@1.1.8
├─ public-encrypt@4.0.3
├─ pug-attrs@3.0.0
├─ pug-code-gen@3.0.2
├─ pug-filters@4.0.0
├─ pug-lexer@5.0.1
├─ pug-linker@4.0.0
├─ pug-load@3.0.0
├─ pug-parser@6.0.0
├─ pug-strip-comments@2.0.0
├─ pug@3.0.2
├─ pumpify@1.5.1
├─ punycode@2.1.1
├─ pupa@2.1.1
├─ pusher-js@5.1.1
├─ q-i@2.0.1
├─ q@1.5.1
├─ query-string@4.3.4
├─ querystring-es3@0.2.1
├─ querystring@0.2.0
├─ querystringify@2.2.0
├─ queue-microtask@1.2.3
├─ quick-lru@5.1.1
├─ raf@3.4.1
├─ randomfill@1.0.4
├─ raw-body@2.4.3
├─ rc@1.2.8
├─ react-codemirror2@7.2.1
├─ react-dev-utils@12.0.0
├─ react-docgen-annotation-resolver@2.0.0
├─ react-docgen-displayname-handler@3.0.2
├─ react-docgen@5.4.0
├─ react-dom@17.0.2
├─ react-error-overlay@6.0.10
├─ react-icons@3.11.0
├─ react-is@16.13.1
├─ react-lifecycles-compat@3.0.4
├─ react-simple-code-editor@0.11.0
├─ react-styleguidist@11.2.0
├─ react@17.0.2
├─ read-pkg@5.2.0
├─ readdirp@3.6.0
├─ recast@0.20.5
├─ rechoir@0.6.2
├─ recursive-readdir@2.2.2
├─ redent@3.0.0
├─ redeyed@2.1.1
├─ regenerate-unicode-properties@8.2.0
├─ regenerator-runtime@0.13.9
├─ regenerator-transform@0.14.5
├─ regexp-tree@0.1.24
├─ regexp.prototype.flags@1.4.1
├─ regexpu-core@4.5.4
├─ registry-auth-token@4.2.1
├─ registry-url@5.1.0
├─ regjsgen@0.5.2
├─ regjsparser@0.6.9
├─ relay-compiler@12.0.0
├─ relay-runtime@12.0.0
├─ remark-parse@9.0.0
├─ remark-stringify@9.0.1
├─ remove-trailing-separator@1.1.0
├─ renderkid@2.0.7
├─ repeat-element@1.1.4
├─ repeat-string@1.6.1
├─ replace-in-file@6.3.2
├─ require-extension-hooks-babel@1.0.0
├─ require-extension-hooks-vue@3.0.0
├─ require-extension-hooks@0.3.3
├─ require-from-string@2.0.2
├─ requrl@3.0.2
├─ resolve-cwd@2.0.0
├─ resolve-path@1.4.0
├─ resolve-url@0.2.1
├─ resolve@1.22.0
├─ responselike@1.0.2
├─ restore-cursor@3.1.0
├─ ret@0.1.15
├─ reusify@1.0.4
├─ rewrite-imports@2.0.3
├─ rfdc@1.3.0
├─ rgb-regex@1.0.1
├─ rgba-regex@1.0.0
├─ rgbcolor@1.0.1
├─ roarr@2.15.4
├─ rtcpeerconnection-shim@1.2.15
├─ run-async@2.4.1
├─ run-parallel@1.2.0
├─ run-queue@1.0.3
├─ rxjs@6.6.7
├─ safer-buffer@2.1.2
├─ sass-loader@10.1.1
├─ sass@1.32.13
├─ sax@1.2.4
├─ scheduler@0.20.2
├─ sdp@2.12.0
├─ seedrandom@2.4.3
├─ select-hose@2.0.0
├─ selfsigned@1.10.14
├─ semver-compare@1.0.0
├─ semver-diff@3.1.1
├─ sentence-case@3.0.4
├─ serialize-error@7.0.1
├─ serve-index@1.9.1
├─ serve-placeholder@1.2.4
├─ server-destroy@1.0.1
├─ set-value@2.0.1
├─ setimmediate@1.0.5
├─ sharp@0.30.3
├─ shebang-command@2.0.0
├─ shebang-regex@3.0.0
├─ shell-quote@1.7.3
├─ shelljs@0.8.4
├─ shvl@2.0.3
├─ siege@0.2.0
├─ sigmund@1.0.1
├─ signedsource@1.0.0
├─ simple-concat@1.0.1
├─ simple-get@4.0.1
├─ simple-swizzle@0.2.2
├─ sirv@1.0.19
├─ sisteransi@1.0.5
├─ snake-case@3.0.4
├─ snapdragon-node@2.1.1
├─ snapdragon-util@3.0.1
├─ sockjs-client@1.6.0
├─ sockjs@0.3.24
├─ sort-keys@1.1.2
├─ source-list-map@2.0.1
├─ source-map-js@1.0.2
├─ source-map-resolve@0.5.3
├─ source-map-support@0.5.21
├─ source-map-url@0.4.1
├─ sparkles@1.0.1
├─ spdx-correct@3.1.1
├─ spdx-exceptions@2.3.0
├─ spdy-transport@3.0.0
├─ spdy@4.0.2
├─ specificity@0.4.1
├─ speed-measure-webpack-plugin@1.5.0
├─ spinkit@2.0.1
├─ split-on-first@1.1.0
├─ split-string@3.1.0
├─ split2@3.2.2
├─ sprintf-js@1.0.3
├─ ssf@0.10.3
├─ ssri@8.0.1
├─ stable@0.1.8
├─ stack-trace@0.0.10
├─ stackblur-canvas@2.5.0
├─ stackframe@1.2.1
├─ static-extend@0.1.2
├─ statuses@1.5.0
├─ std-env@2.3.1
├─ stream-browserify@2.0.2
├─ stream-each@1.2.3
├─ stream-http@2.8.3
├─ streamsearch@0.1.2
├─ strict-uri-encode@1.1.0
├─ string_decoder@1.3.0
├─ string-argv@0.3.1
├─ string-hash@1.1.3
├─ string.prototype.trimend@1.0.4
├─ string.prototype.trimstart@1.0.4
├─ stringify-object@3.3.0
├─ strip-eof@1.0.0
├─ strip-html-comments@1.0.0
├─ strip-json-comments@3.1.1
├─ style-loader@1.3.0
├─ style-resources-loader@1.5.0
├─ style-search@0.1.0
├─ stylehacks@4.0.3
├─ stylelint-config-prettier@9.0.3
├─ stylelint-config-recommended@5.0.0
├─ stylelint-config-standard@22.0.0
├─ stylelint-webpack-plugin@2.3.2
├─ stylelint@13.13.1
├─ subscriptions-transport-ws@0.9.19
├─ sugarss@2.0.0
├─ supports-preserve-symlinks-flag@1.0.0
├─ svg-pathdata@6.0.3
├─ svg.draggable.js@2.2.2
├─ svg.easing.js@2.0.0
├─ svg.filter.js@2.0.2
├─ svg.js@2.7.1
├─ svg.pathmorphing.js@0.1.3
├─ svg.resize.js@1.4.3
├─ svg.select.js@3.0.1
├─ svgo@1.3.2
├─ symbol-observable@1.2.0
├─ sync-fetch@0.3.0
├─ table@6.8.0
├─ tailwind-config-viewer@1.6.3
├─ tailwindcss@3.0.23
├─ tar-fs@2.1.1
├─ tar-stream@2.2.0
├─ tar@6.1.11
├─ terser-webpack-plugin@4.2.3
├─ terser@4.8.0
├─ test-exclude@6.0.0
├─ text-segmentation@1.0.3
├─ thread-loader@3.0.4
├─ throttle-debounce@3.0.1
├─ through@2.3.8
├─ through2@4.0.2
├─ thunky@1.1.0
├─ time-fix-plugin@2.0.7
├─ timers-browserify@2.0.12
├─ timsort@0.3.0
├─ tippy.js@6.3.7
├─ tmp@0.0.33
├─ to-arraybuffer@1.0.1
├─ to-object-path@0.3.0
├─ to-readable-stream@1.0.0
├─ to-regex-range@2.1.1
├─ toidentifier@1.0.1
├─ token-stream@1.0.0
├─ totalist@1.1.0
├─ touch@3.1.0
├─ tr46@0.0.3
├─ tree-kill@1.2.2
├─ treeify@1.1.0
├─ trim-newlines@3.0.1
├─ trough@1.0.5
├─ ts-essentials@9.1.2
├─ ts-loader@8.3.0
├─ ts-map@1.0.3
├─ ts-node@8.10.2
├─ ts-pnp@1.2.0
├─ tsconfig-paths@3.14.1
├─ tsscmp@1.0.6
├─ tty-browserify@0.0.0
├─ tty@1.0.1
├─ type-detect@4.0.8
├─ typedarray-to-buffer@3.1.5
├─ typedarray@0.0.6
├─ typescript@4.2.4
├─ ua-parser-js@0.7.31
├─ ufo@0.7.11
├─ uglify-js@3.15.3
├─ unbox-primitive@1.0.1
├─ unctx@1.1.2
├─ undefsafe@2.0.5
├─ undici@4.16.0
├─ unfetch@4.2.0
├─ unicode-canonical-property-names-ecmascript@1.0.4
├─ unicode-match-property-ecmascript@1.0.4
├─ unicode-match-property-value-ecmascript@1.2.0
├─ unicode-property-aliases-ecmascript@1.1.0
├─ unified@9.2.2
├─ union-value@1.0.1
├─ unique-slug@2.0.2
├─ unique-string@2.0.0
├─ unist-util-find-all-after@3.0.2
├─ unist-util-visit-parents@3.1.1
├─ unist-util-visit@2.0.3
├─ universal-cookie@4.0.4
├─ unpipe@1.0.0
├─ unplugin-vue2-script-setup@0.9.3
├─ unplugin@0.3.3
├─ unquote@1.1.1
├─ unset-value@1.0.0
├─ untildify@4.0.0
├─ untyped@0.4.3
├─ update-notifier@5.1.0
├─ upper-case@1.1.3
├─ urix@0.1.0
├─ url-loader@4.1.1
├─ url-parse-lax@3.0.0
├─ url-parse@1.5.10
├─ use@3.1.1
├─ util-deprecate@1.0.2
├─ util.promisify@1.1.1
├─ util@0.10.3
├─ uuid@3.4.0
├─ v8-compile-cache@2.3.0
├─ v8-to-istanbul@8.1.1
├─ vendors@1.0.4
├─ vfile-message@2.0.4
├─ vfile@4.2.1
├─ viewerjs@1.10.4
├─ vm-browserify@1.1.2
├─ void-elements@3.1.0
├─ vscode-jsonrpc@4.0.0
├─ vscode-languageserver-protocol@3.14.1
├─ vscode-languageserver-types@3.14.0
├─ vscode-languageserver@5.2.1
├─ vue-apexcharts@1.6.2
├─ vue-apollo@3.1.0
├─ vue-cli-plugin-apollo@0.22.2
├─ vue-client-only@2.1.0
├─ vue-demi@0.12.4
├─ vue-docgen-api@4.44.22
├─ vue-eslint-parser@8.3.0
├─ vue-excel-xlsx@1.2.2
├─ vue-frag@1.4.0
├─ vue-hot-reload-api@2.3.4
├─ vue-inbrowser-compiler-demi@4.44.22
├─ vue-inbrowser-compiler@4.44.22
├─ vue-lazy-hydration@2.0.0-beta.4
├─ vue-loader@15.9.8
├─ vue-no-ssr@1.1.1
├─ vue-router@3.5.3
├─ vue-server-renderer@2.6.14
├─ vue-style-loader@4.1.3
├─ vue-styleguidist@4.44.22
├─ vue-template-babel-compiler@1.1.3
├─ vue-tour@2.0.0
├─ vue2-dropzone@3.6.0
├─ vuetify-loader@1.7.3
├─ vuetify@2.6.4
├─ vuex-persistedstate@4.1.0
├─ vuex@3.6.2
├─ walkes@0.2.1
├─ watchpack-chokidar2@2.0.1
├─ watchpack@1.7.5
├─ wbuf@1.7.3
├─ wcwidth@1.0.1
├─ web-streams-polyfill@3.2.0
├─ webidl-conversions@3.0.1
├─ webpack-bundle-analyzer@4.5.0
├─ webpack-dev-middleware@3.7.3
├─ webpack-hot-middleware@2.25.1
├─ webpack-node-externals@2.5.2
├─ webpack@4.46.0
├─ webpackbar@4.0.0
├─ webrtc-adapter@7.7.1
├─ websocket-driver@0.7.4
├─ websocket-extensions@0.1.4
├─ whatwg-url@5.0.0
├─ which-boxed-primitive@1.0.2
├─ which@1.3.1
├─ wide-align@1.1.5
├─ with@7.0.2
├─ word-wrap@1.2.3
├─ worker-farm@1.7.0
├─ worker-plugin@5.0.1
├─ write-file-atomic@3.0.3
├─ write-json-file@2.3.0
├─ ws@7.4.5
├─ xlsx@0.14.5
├─ xml2js@0.4.23
├─ xmlbuilder@9.0.7
├─ xss@1.0.11
├─ xtend@4.0.2
├─ xxhashjs@0.2.2
├─ yargs-parser@20.2.9
├─ yargs@13.3.2
├─ yarn@1.22.18
├─ yauzl@2.10.0
├─ ylru@1.3.2
├─ yn@3.1.1
├─ yocto-queue@0.1.0
├─ zen-observable-ts@0.8.21
├─ zen-observable@0.8.15
└─ zwitch@1.0.5
✨  Done in 179.01s.

This was referenced Mar 24, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants