Skip to content

Commit

Permalink
Merge pull request #72 from pkgw/update
Browse files Browse the repository at this point in the history
package.json: require newest engine to get better touch gesture handling
  • Loading branch information
pkgw authored Feb 15, 2024
2 parents d187dee + f86e585 commit bcf171f
Show file tree
Hide file tree
Showing 5 changed files with 4,147 additions and 3,055 deletions.
17 changes: 8 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
{
"dependencies": {
"@nuxt/webpack-builder": "^3.4.3",
"@pinia/nuxt": "^0.4.7",
"@effect/schema": "^0.62",
"@pinia/nuxt": "^0.5.1",
"@vueuse/core": "^10.5.0",
"@vueuse/nuxt": "^10.1.2",
"@wwtelescope/astro": "^0.2.2",
"@wwtelescope/engine": "^7.29.3",
"@wwtelescope/engine": "^7.30.1",
"@wwtelescope/engine-helpers": "^0.16",
"@wwtelescope/engine-pinia": "^0.9",
"@wwtelescope/engine-types": "^0.6.4",
"effect": "^2.3",
"ellipsize": "^0.1",
"escape-html": "^1.0.3",
"femtotween": "^2.0.3",
"fp-ts": "^2.13",
"io-ts": "^2.2",
"keycloak-js": "~21.0.0",
"less": "^4.1.3",
"pinia": "^2.0.32",
Expand All @@ -30,6 +29,7 @@
"devDependencies": {
"@css-render/vue3-ssr": "^0.15.12",
"@dargmuesli/nuxt-cookie-control": "^5.9.2",
"@nuxt/webpack-builder": "^3.4.3",
"@nuxtjs/google-analytics": "^2.4.0",
"@types/ellipsize": "^0.1",
"@types/escape-html": "^1",
Expand All @@ -43,9 +43,10 @@
"file-loader": "^6.2",
"less-loader": "^11.1.0",
"naive-ui": "^2.34",
"nuxt": "^3.4.3",
"nuxt": "^3.10.1",
"postcss": "^8.4",
"postcss-loader": "^7",
"typescript": "^5.3",
"url-loader": "^4.1",
"vue-axe": "^3.1.2",
"vue-loader": "^17",
Expand All @@ -54,15 +55,13 @@
"name": "@wwtelescope/constellations-frontend",
"packageManager": "[email protected]",
"private": true,
"resolutions": {
"tslib": "<2.5.3"
},
"scripts": {
"build": "nuxi build",
"dev": "nuxi dev",
"postinstall": "nuxi prepare",
"preview": "nuxi preview",
"start": "nuxi start"
},
"type": "module",
"version": "0.0.0-dev.0"
}
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
// https://nuxt.com/docs/guide/concepts/typescript
"extends": "./.nuxt/tsconfig.json",
"compilerOptions": {
"allowSyntheticDefaultImports": true
"allowSyntheticDefaultImports": true,
"exactOptionalPropertyTypes": true,
"strict": true
}
}
Loading

0 comments on commit bcf171f

Please sign in to comment.