vyladený štart
This commit is contained in:
@@ -0,0 +1,14 @@
|
|||||||
|
{
|
||||||
|
"name": "ili",
|
||||||
|
"image": "mcr.microsoft.com/devcontainers/javascript-node:22",
|
||||||
|
"remoteUser": "root",
|
||||||
|
"updateRemoteUserUID": false,
|
||||||
|
"mounts": [
|
||||||
|
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind",
|
||||||
|
"source=${localEnv:HOME},target=/host-home,type=bind"
|
||||||
|
],
|
||||||
|
"forwardPorts": [
|
||||||
|
3000
|
||||||
|
],
|
||||||
|
"postCreateCommand": "bash .devcontainer/post-create.sh"
|
||||||
|
}
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -e
|
||||||
|
|
||||||
|
corepack enable
|
||||||
|
corepack prepare pnpm@10.33.0 --activate
|
||||||
|
|
||||||
|
ln -sf /host-home/.gitconfig /root/.gitconfig
|
||||||
|
ln -sf /host-home/.git-credentials /root/.git-credentials
|
||||||
|
|
||||||
|
pnpm install
|
||||||
Vendored
+5
-3
@@ -1,12 +1,14 @@
|
|||||||
{
|
{
|
||||||
"recommendations": [
|
"recommendations": [
|
||||||
"Vue.volar",
|
"vue.volar",
|
||||||
"Vue.vscode-typescript-vue-plugin",
|
"vue.vscode-typescript-vue-plugin",
|
||||||
"dbaeumer.vscode-eslint",
|
"dbaeumer.vscode-eslint",
|
||||||
"esbenp.prettier-vscode",
|
"esbenp.prettier-vscode",
|
||||||
"EditorConfig.EditorConfig",
|
"EditorConfig.EditorConfig",
|
||||||
"Nuxt.mdc",
|
"Nuxt.mdc",
|
||||||
"lokalise.i18n-ally",
|
"lokalise.i18n-ally",
|
||||||
"vitest.explorer"
|
"vitest.explorer",
|
||||||
|
"bradlc.vscode-tailwindcss",
|
||||||
|
"ms-azuretools.vscode-docker"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
+9
-10
@@ -1,11 +1,11 @@
|
|||||||
{
|
{
|
||||||
"name": "nuxt-workspace-template",
|
"name": "ili",
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"packageManager": "pnpm@10.33.0",
|
"packageManager": "pnpm@10.33.0",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^22.12.0 || >=24"
|
"node": "^22.12.0 || <24"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "nuxt dev",
|
"dev": "nuxt dev",
|
||||||
@@ -25,22 +25,21 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@nuxt/ui": "^4.6.0",
|
"@nuxt/ui": "^4.6.0",
|
||||||
"@pinia/nuxt": "^0.11.3",
|
"@pinia/nuxt": "^0.11.3",
|
||||||
"nuxt": "4.4.2",
|
"nuxt": "4.4.4",
|
||||||
"pinia": "^3.0.4",
|
"pinia": "^3.0.4"
|
||||||
"vue": "3.5.31",
|
|
||||||
"vue-router": "5.0.4"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@hey-api/openapi-ts": "0.94.5",
|
"@hey-api/openapi-ts": "0.94.5",
|
||||||
"@types/node": "^24.5.2",
|
|
||||||
"@iconify-json/lucide": "^1.2.70",
|
"@iconify-json/lucide": "^1.2.70",
|
||||||
"@nuxt/eslint": "1.15.2",
|
"@nuxt/eslint": "1.15.2",
|
||||||
"@nuxtjs/i18n": "10.2.4",
|
"@nuxtjs/i18n": "^10.2.4",
|
||||||
|
"@types/node": "^22",
|
||||||
"@vue/test-utils": "2.4.6",
|
"@vue/test-utils": "2.4.6",
|
||||||
"eslint": "9.39.1",
|
"eslint": "^9.39.4",
|
||||||
"prettier": "3.7.4",
|
"prettier": "3.7.4",
|
||||||
"rimraf": "^6.1.2",
|
"rimraf": "^6.1.2",
|
||||||
"sass": "1.98.0",
|
"sass": "^1.99.0",
|
||||||
|
"sass-embedded": "^1.x",
|
||||||
"tailwindcss": "^4.2.2",
|
"tailwindcss": "^4.2.2",
|
||||||
"typescript": "5.9.3",
|
"typescript": "5.9.3",
|
||||||
"vitest": "4.1.2",
|
"vitest": "4.1.2",
|
||||||
|
|||||||
Generated
+2182
-1049
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,5 @@
|
|||||||
|
allowBuilds:
|
||||||
|
'@parcel/watcher': true
|
||||||
|
esbuild: true
|
||||||
|
unrs-resolver: true
|
||||||
|
vue-demi: true
|
||||||
Reference in New Issue
Block a user