Skip to content

Commit ca72c5f

Browse files
chore: upgraded dependencies
1 parent 26460cd commit ca72c5f

File tree

6 files changed

+5647
-7201
lines changed

6 files changed

+5647
-7201
lines changed

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pnpm-lock.yaml

client/pages/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ const { data } = useAsyncQuery<{
114114
id: String
115115
name: String
116116
active: Boolean
117-
}
117+
}[]
118118
}>(query)
119119
const ships = computed(() => data.value?.ships ?? [])
120120
</script>

nuxt.config.ts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import vuetify from 'vite-plugin-vuetify'
2-
import { InlineConfig } from 'vite'
32
// https://nuxt.com/docs/api/configuration/nuxt-config
43

54
export default defineNuxtConfig({
@@ -13,10 +12,8 @@ export default defineNuxtConfig({
1312
default: { httpEndpoint: 'https://spacex-production.up.railway.app/' },
1413
},
1514
},
16-
modules: ['@nuxtjs/apollo', ['@pinia/nuxt', { autoImports: ['defineStore', 'acceptHMRUpdate'] }]],
17-
hooks: {
18-
'vite:extendConfig': (config: InlineConfig) => {
19-
config?.plugins?.push(vuetify())
20-
},
15+
vite: {
16+
plugins: [vuetify()],
2117
},
18+
modules: ['@nuxtjs/apollo', ['@pinia/nuxt', { autoImports: ['defineStore', 'acceptHMRUpdate'] }]],
2219
})

package.json

Lines changed: 48 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,50 @@
11
{
2-
"private": true,
3-
"scripts": {
4-
"prepare": "husky install",
5-
"build": "nuxt build",
6-
"dev": "nuxt dev",
7-
"generate": "nuxt generate",
8-
"preview": "nuxt preview",
9-
"postinstall": "nuxt prepare",
10-
"lint:js": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
11-
"lint:style": "stylelint **/*.{vue,css,scss} --ignore-path .gitignore",
12-
"lint": "npm run lint:js && npm run lint:style",
13-
"lintfix": "eslint --fix --ext .js,.jsx,.ts,.tsx,.vue --ignore-path .gitignore . && stylelint --fix **/*.{vue,css,scss} --ignore-path .gitignore"
14-
},
15-
"lint-staged": {
16-
"**/*": "prettier --write --ignore-unknown",
17-
"*.{js,jsx,ts,tsx,vue}": "eslint --fix --ignore-path .gitignore",
18-
"*.{css,scss,vue}": "stylelint --fix --ignore-path .gitignore"
19-
},
20-
"config": {
21-
"commitizen": {
22-
"path": "./node_modules/cz-conventional-changelog"
23-
}
24-
},
25-
"devDependencies": {
26-
"@mdi/font": "^7.2.96",
27-
"@nuxtjs/apollo": "5.0.0-alpha.5",
28-
"@nuxtjs/eslint-config-typescript": "^12.0.0",
29-
"cz-conventional-changelog": "^3.3.0",
30-
"eslint": "^8.36.0",
31-
"eslint-config-prettier": "^8.8.0",
32-
"eslint-plugin-nuxt": "^4.0.0",
33-
"eslint-plugin-prettier": "^4.2.1",
34-
"husky": "^8.0.3",
35-
"lint-staged": "^13.2.0",
36-
"nuxt": "^3.3.2",
37-
"postcss-html": "^1.5.0",
38-
"prettier": "^2.8.7",
39-
"stylelint": "^14.16.1",
40-
"stylelint-config-prettier": "^9.0.5",
41-
"stylelint-config-standard-scss": "^6.1.0",
42-
"stylelint-config-standard-vue": "^1.0.0",
43-
"vite-plugin-vuetify": "^1.0.2"
44-
},
45-
"dependencies": {
46-
"@pinia/nuxt": "^0.4.7",
47-
"sass": "^1.60.0",
48-
"vuetify": "^3.1.11"
49-
},
50-
"version": "1.0.0"
2+
"private": true,
3+
"scripts": {
4+
"prepare": "husky install",
5+
"build": "nuxt build",
6+
"dev": "nuxt dev",
7+
"generate": "nuxt generate",
8+
"preview": "nuxt preview",
9+
"postinstall": "nuxt prepare",
10+
"lint:js": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
11+
"lint:style": "stylelint **/*.{vue,css,scss} --ignore-path .gitignore",
12+
"lint": "npm run lint:js && npm run lint:style",
13+
"lintfix": "eslint --fix --ext .js,.jsx,.ts,.tsx,.vue --ignore-path .gitignore . && stylelint --fix **/*.{vue,css,scss} --ignore-path .gitignore"
14+
},
15+
"lint-staged": {
16+
"**/*": "prettier --write --ignore-unknown",
17+
"*.{js,jsx,ts,tsx,vue}": "eslint --fix --ignore-path .gitignore",
18+
"*.{css,scss,vue}": "stylelint --fix --ignore-path .gitignore"
19+
},
20+
"config": {
21+
"commitizen": {
22+
"path": "./node_modules/cz-conventional-changelog"
23+
}
24+
},
25+
"devDependencies": {
26+
"@mdi/font": "^7.2.96",
27+
"@nuxtjs/apollo": "^5.0.0-alpha.9",
28+
"@nuxtjs/eslint-config-typescript": "^12.0.0",
29+
"cz-conventional-changelog": "^3.3.0",
30+
"eslint": "^8.54.0",
31+
"eslint-config-prettier": "^9.0.0",
32+
"eslint-plugin-nuxt": "^4.0.0",
33+
"eslint-plugin-prettier": "^5.0.1",
34+
"husky": "^8.0.3",
35+
"lint-staged": "^15.1.0",
36+
"nuxt": "^3.8.2",
37+
"postcss-html": "^1.5.0",
38+
"prettier": "^3.1.0",
39+
"stylelint": "^15.11.0",
40+
"stylelint-config-standard-scss": "^11.1.0",
41+
"stylelint-config-standard-vue": "^1.0.0",
42+
"vite-plugin-vuetify": "^1.0.2"
43+
},
44+
"dependencies": {
45+
"@pinia/nuxt": "^0.5.1",
46+
"sass": "^1.68.0",
47+
"vuetify": "^3.3.23"
48+
},
49+
"version": "1.0.0"
5150
}

0 commit comments

Comments
 (0)