reverted package.json

This commit is contained in:
David Back 2023-04-07 08:40:08 -04:00
parent 3e9aa4d7fd
commit 89b96a77f7
2 changed files with 8 additions and 12 deletions

View file

@ -4,27 +4,26 @@
"private": true, "private": true,
"scripts": { "scripts": {
"serve": "vue-cli-service serve", "serve": "vue-cli-service serve",
"build": "vue-cli-service build --modern", "build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit --coverage --ci", "test:unit": "vue-cli-service test:unit --coverage --ci",
"test:unit:lite": "vue-cli-service test:unit --ci" "test:unit:lite": "vue-cli-service test:unit --ci"
}, },
"dependencies": { "dependencies": {
"@pinia/testing": "0.0.14",
"@popperjs/core": "^2.10.2", "@popperjs/core": "^2.10.2",
"axios": "^0.27.2", "axios": "^0.27.2",
"bootstrap": "^5.2.3", "bootstrap": "^5.2.2",
"jest-junit": "^13.0.0", "jest-junit": "^13.0.0",
"maska": "^1.5.0", "maska": "^1.5.0",
"pinia": "^2.0.33", "pinia": "^2.0.22",
"pinia-plugin-persistedstate": "^2.2.0", "pinia-plugin-persistedstate": "^2.2.0",
"vee-validate": "^4.8.4", "vee-validate": "^4.7.0",
"vue": "^3.2.13", "vue": "^3.2.13",
"vue-plugin-load-script": "^2.1.1", "vue-plugin-load-script": "^2.1.0",
"vue-router": "4.1.6" "vue-router": "4.1.3"
}, },
"devDependencies": { "devDependencies": {
"@testing-library/jest-dom": "5.16.5", "@testing-library/jest-dom": "5.16.5",
"@pinia/testing": "0.0.14",
"@testing-library/user-event": "14.4.3", "@testing-library/user-event": "14.4.3",
"@testing-library/vue": "6.6.1", "@testing-library/vue": "6.6.1",
"@vue/cli-plugin-babel": "^5.0.8", "@vue/cli-plugin-babel": "^5.0.8",

View file

@ -9,8 +9,6 @@ process.env.VUE_APP_GOOGLE_PLACES_API_KEY =
process.env.VUE_APP_GOOGLE_TAG_MANAGER_SCRIPT_BODY = "(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-KKNWZ3');"; process.env.VUE_APP_GOOGLE_TAG_MANAGER_SCRIPT_BODY = "(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-KKNWZ3');";
process.env.VUE_APP_GOOGLE_TAG_MANAGER_NOSCRIPT_FRAME_SRC = "https://www.googletagmanager.com/ns.html?id=GTM-KKNWZ3&gtm_auth=amlAYNhxUxuskQo7jmjadg&gtm_preview=env-38&gtm_cookies_win=x"; process.env.VUE_APP_GOOGLE_TAG_MANAGER_NOSCRIPT_FRAME_SRC = "https://www.googletagmanager.com/ns.html?id=GTM-KKNWZ3&gtm_auth=amlAYNhxUxuskQo7jmjadg&gtm_preview=env-38&gtm_cookies_win=x";
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
module.exports = { module.exports = {
publicPath: "/", publicPath: "/",
css: { css: {
@ -29,7 +27,6 @@ module.exports = {
}, },
}, },
configureWebpack: { configureWebpack: {
devtool: 'source-map', devtool: 'source-map'
plugins: [ new MiniCssExtractPlugin()]
}, },
}; };