chore(): update vue test app (#24262)

This commit is contained in:
Liam DeBeasi
2021-11-23 16:35:54 -05:00
committed by GitHub
parent 07d83ccd24
commit 6f01c3b73d
2 changed files with 1984 additions and 1912 deletions

File diff suppressed because it is too large Load Diff

View File

@ -2,41 +2,41 @@
"name": "test-app", "name": "test-app",
"version": "0.0.1", "version": "0.0.1",
"private": true, "private": true,
"description": "An Ionic project",
"scripts": { "scripts": {
"start": "npm run sync && vue-cli-service serve",
"build": "vue-cli-service build", "build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit", "test:unit": "vue-cli-service test:unit",
"test:e2e": "concurrently \"npm run start\" \"wait-on http-get://localhost:8080 && npm run cypress\" --kill-others --success first", "test:e2e": "concurrently \"npm run start\" \"wait-on http-get://localhost:8080 && npm run cypress\" --kill-others --success first",
"lint": "vue-cli-service lint", "lint": "vue-cli-service lint",
"cypress": "node_modules/.bin/cypress run --headless --browser chrome", "cypress": "node_modules/.bin/cypress run --headless --browser chrome",
"start": "npm run sync && vue-cli-service serve",
"sync": "sh ./scripts/sync.sh" "sync": "sh ./scripts/sync.sh"
}, },
"dependencies": { "dependencies": {
"@ionic/vue": "5.6.3", "@ionic/vue": "5.6.3",
"@ionic/vue-router": "5.6.3", "@ionic/vue-router": "5.6.3",
"vue": "^3.0.0-0", "vue": "^3.2.22",
"vue-router": "^4.0.0-rc.4" "vue-router": "^4.0.12"
}, },
"devDependencies": { "devDependencies": {
"@types/jest": "^24.0.19", "@types/jest": "^24.0.19",
"@typescript-eslint/eslint-plugin": "^2.33.0", "@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0", "@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "^4.5.12", "@vue/cli-plugin-babel": "~4.5.15",
"@vue/cli-plugin-e2e-cypress": "^5.0.0-alpha.7", "@vue/cli-plugin-e2e-cypress": "^5.0.0-alpha.7",
"@vue/cli-plugin-eslint": "~4.5.0", "@vue/cli-plugin-eslint": "~4.5.15",
"@vue/cli-plugin-router": "~4.5.0", "@vue/cli-plugin-router": "~4.5.15",
"@vue/cli-plugin-typescript": "~4.5.0", "@vue/cli-plugin-typescript": "~4.5.15",
"@vue/cli-plugin-unit-jest": "~4.5.0", "@vue/cli-plugin-unit-jest": "~4.5.15",
"@vue/cli-service": "~4.5.0", "@vue/cli-service": "~4.5.15",
"@vue/compiler-sfc": "^3.0.0-0", "@vue/compiler-sfc": "^3.0.0-0",
"@vue/eslint-config-typescript": "^5.0.2", "@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^2.0.0-0", "@vue/test-utils": "^2.0.0-0",
"concurrently": "^6.0.0", "concurrently": "^6.0.0",
"eslint": "^6.7.2", "eslint": "^6.7.2",
"eslint-plugin-vue": "^7.0.0-0", "eslint-plugin-vue": "^7.0.0-0",
"typescript": "~3.9.3", "typescript": "~4.1.5",
"vue-jest": "^5.0.0-0", "vue-jest": "^5.0.0-0",
"wait-on": "^5.3.0" "wait-on": "^5.3.0"
}, }
"description": "An Ionic project"
} }