|
3 | 3 | "version": "4.1.2", |
4 | 4 | "private": true, |
5 | 5 | "scripts": { |
6 | | - "dev": "nuxt dev", |
7 | | - "lint": "eslint .", |
8 | | - "lint:fix": "eslint . --fix", |
9 | | - "type-check": "nuxi typecheck", |
10 | 6 | "prebuild:dev": "./scripts/prebuild-webgui-set-env.sh .env.staging", |
11 | | - "build:dev": "nuxt build && pnpm run manifest-ts && pnpm run deploy-to-unraid:dev", |
12 | | - "postbuild:dev": "./scripts/postbuild-webgui-restore-env.sh", |
13 | 7 | "prebuild:webgui": "./scripts/prebuild-webgui-set-env.sh", |
| 8 | + "build": "NODE_ENV=production nuxt build && pnpm run manifest-ts", |
| 9 | + "build:dev": "nuxt build && pnpm run manifest-ts && pnpm run deploy-to-unraid:dev", |
14 | 10 | "build:webgui": "pnpm run type-check && nuxt build && pnpm run manifest-ts && pnpm run copy-to-webgui-repo", |
| 11 | + "postbuild:dev": "./scripts/postbuild-webgui-restore-env.sh", |
15 | 12 | "postbuild:webgui": "./scripts/postbuild-webgui-restore-env.sh", |
16 | | - "build": "NODE_ENV=production nuxt build && pnpm run manifest-ts", |
17 | | - "deploy-to-unraid:dev": "./scripts/deploy-dev.sh", |
| 13 | + "clean": "pnpx rimraf .nuxt node_modules", |
| 14 | + "codegen": "graphql-codegen --config codegen.ts -r dotenv/config", |
| 15 | + "codegen:watch": "graphql-codegen --config codegen.ts --watch -r dotenv/config", |
18 | 16 | "copy-to-webgui-repo": "./scripts/copy-to-webgui-repo.sh", |
19 | | - "manifest-ts": "node ./scripts/add-timestamp-webcomponent-manifest.js", |
| 17 | + "deploy-to-unraid:dev": "./scripts/deploy-dev.sh", |
| 18 | + "dev": "nuxt dev", |
20 | 19 | "generate": "nuxt generate", |
21 | | - "preview": "nuxt preview", |
22 | 20 | "postinstall": "nuxt prepare", |
| 21 | + "lint": "eslint .", |
| 22 | + "lint:fix": "eslint . --fix", |
| 23 | + "manifest-ts": "node ./scripts/add-timestamp-webcomponent-manifest.js", |
| 24 | + "preview": "nuxt preview", |
23 | 25 | "serve": "NODE_ENV=production PORT=${PORT:-4321} node .output/server/index.mjs", |
24 | | - "codegen": "graphql-codegen --config codegen.ts -r dotenv/config", |
25 | | - "codegen:watch": "graphql-codegen --config codegen.ts --watch -r dotenv/config", |
26 | 26 | "test": "vitest", |
27 | | - "test:ci": "vitest run" |
28 | | - }, |
29 | | - "devDependencies": { |
30 | | - "@graphql-codegen/cli": "^5.0.3", |
31 | | - "@graphql-codegen/client-preset": "^4.5.1", |
32 | | - "@graphql-codegen/introspection": "^4.0.3", |
33 | | - "@ianvs/prettier-plugin-sort-imports": "^4.4.0", |
34 | | - "@nuxt/devtools": "^1.6.4", |
35 | | - "@nuxt/eslint": "^0.7.3", |
36 | | - "@nuxtjs/tailwindcss": "^6.12.2", |
37 | | - "@rollup/plugin-strip": "^3.0.4", |
38 | | - "@tailwindcss/typography": "^0.5.15", |
39 | | - "@types/crypto-js": "^4.2.2", |
40 | | - "@types/eslint-config-prettier": "^6.11.3", |
41 | | - "@types/node": "^22", |
42 | | - "@types/semver": "^7.5.8", |
43 | | - "@unraid/tailwind-rem-to-rem": "^1.1.0", |
44 | | - "@vue/apollo-util": "^4.0.0-beta.6", |
45 | | - "@vueuse/core": "^12.0.0", |
46 | | - "@vueuse/nuxt": "^12.0.0", |
47 | | - "eslint-config-prettier": "^9.1.0", |
48 | | - "lodash-es": "^4.17.21", |
49 | | - "nuxt": "^3.14.1592", |
50 | | - "nuxt-custom-elements": "2.0.0-beta.18", |
51 | | - "prettier": "3.5.1", |
52 | | - "prettier-plugin-tailwindcss": "^0.6.9", |
53 | | - "shadcn-nuxt": "^0.11.3", |
54 | | - "tailwindcss-animate": "^1.0.7", |
55 | | - "terser": "^5.37.0", |
56 | | - "vite-plugin-remove-console": "^2.2.0", |
57 | | - "vitest": "^2.1.3", |
58 | | - "vue-tsc": "^2.1.10" |
| 27 | + "test:ci": "vitest run", |
| 28 | + "type-check": "nuxi typecheck" |
59 | 29 | }, |
60 | 30 | "dependencies": { |
61 | 31 | "@apollo/client": "^3.12.3", |
|
89 | 59 | "vue-i18n": "^10.0.5", |
90 | 60 | "wretch": "^2.11.0" |
91 | 61 | }, |
| 62 | + "devDependencies": { |
| 63 | + "@graphql-codegen/cli": "^5.0.3", |
| 64 | + "@graphql-codegen/client-preset": "^4.5.1", |
| 65 | + "@graphql-codegen/introspection": "^4.0.3", |
| 66 | + "@ianvs/prettier-plugin-sort-imports": "^4.4.0", |
| 67 | + "@nuxt/devtools": "^1.6.4", |
| 68 | + "@nuxt/eslint": "^0.7.3", |
| 69 | + "@nuxtjs/tailwindcss": "^6.12.2", |
| 70 | + "@rollup/plugin-strip": "^3.0.4", |
| 71 | + "@tailwindcss/typography": "^0.5.15", |
| 72 | + "@types/crypto-js": "^4.2.2", |
| 73 | + "@types/eslint-config-prettier": "^6.11.3", |
| 74 | + "@types/node": "^22", |
| 75 | + "@types/semver": "^7.5.8", |
| 76 | + "@unraid/tailwind-rem-to-rem": "^1.1.0", |
| 77 | + "@vue/apollo-util": "^4.0.0-beta.6", |
| 78 | + "@vueuse/core": "^12.0.0", |
| 79 | + "@vueuse/nuxt": "^12.0.0", |
| 80 | + "eslint-config-prettier": "^9.1.0", |
| 81 | + "lodash-es": "^4.17.21", |
| 82 | + "nuxt": "^3.14.1592", |
| 83 | + "nuxt-custom-elements": "2.0.0-beta.18", |
| 84 | + "prettier": "3.5.1", |
| 85 | + "prettier-plugin-tailwindcss": "^0.6.9", |
| 86 | + "shadcn-nuxt": "^0.11.3", |
| 87 | + "tailwindcss-animate": "^1.0.7", |
| 88 | + "terser": "^5.37.0", |
| 89 | + "vite-plugin-remove-console": "^2.2.0", |
| 90 | + "vitest": "^2.1.3", |
| 91 | + "vue-tsc": "^2.1.10" |
| 92 | + }, |
92 | 93 | "optionalDependencies": { |
93 | 94 | "@rollup/rollup-linux-x64-gnu": "^4.30.1" |
94 | 95 | }, |
| 96 | + "packageManager": "[email protected]", |
95 | 97 | "overrides": { |
96 | 98 | "vue": "latest", |
97 | 99 | "radix-vue": { |
98 | 100 | "@floating-ui/vue": "^1.1.5" |
99 | 101 | } |
100 | | - }, |
101 | | - "packageManager": "[email protected]" |
| 102 | + } |
102 | 103 | } |
0 commit comments