Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions apps/function-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,38 +13,38 @@
"type-check": "tsc -p tsconfig.check.json"
},
"dependencies": {
"@apollo/server": "^5.0.0",
"@as-integrations/azure-functions": "^0.2.2",
"@azure/functions": "^4.8.0",
"@graphql-tools/schema": "^10.0.25",
"@graphql-tools/utils": "^10.9.1",
"@apollo/server": "^5.2.0",
"@as-integrations/azure-functions": "^0.2.3",
"@azure/functions": "^4.10.0",
"@graphql-tools/schema": "^10.0.30",
"@graphql-tools/utils": "^10.11.0",
"@js-joda/core": "^5.6.5",
"@opentelemetry/api": "^1.9.0",
"@shellicar-core-foundation/monitor": "workspace:^",
"@shellicar-core-foundation/server-common": "workspace:^",
"@shellicar/core-di": "^3.1.1",
"applicationinsights": "^3.12.0",
"@shellicar/core-di": "^3.1.2",
"applicationinsights": "^3.12.1",
"dataloader": "^2.2.3",
"graphql": "^16.11.0",
"graphql": "^16.12.0",
"graphql-scalars": "^1.25.0",
"winston": "^3.18.3",
"zod": "^3.25.76"
"winston": "^3.19.0",
"zod": "^4.2.1"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.51.0",
"@graphql-codegen/cli": "^6.0.1",
"@dotenvx/dotenvx": "^1.51.2",
"@graphql-codegen/cli": "^6.1.0",
"@graphql-codegen/introspection": "^5.0.0",
"@graphql-codegen/typescript": "^5.0.2",
"@graphql-codegen/typescript-resolvers": "^5.1.0",
"@graphql-codegen/typescript": "^5.0.7",
"@graphql-codegen/typescript-resolvers": "^5.1.5",
"@shellicar-core-foundation/build": "workspace:^",
"@shellicar-core-foundation/typescript-config": "workspace:^",
"@shellicar/build-graphql": "^1.2.1",
"@shellicar/build-graphql": "^1.2.2",
"@shellicar/build-version": "^1.3.1",
"@types/node": "^24.9.1",
"esbuild": "^0.25.11",
"glob": "^11.0.3",
"@types/node": "^25.0.3",
"esbuild": "^0.27.2",
"glob": "^13.0.0",
"npm-run-all2": "^8.0.4",
"tsx": "^4.20.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}
2 changes: 1 addition & 1 deletion apps/function-app/src/core/graphql/scalars/EmailAddress.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { type ASTNode, GraphQLError, GraphQLScalarType, type GraphQLScalarTypeConfig, Kind } from 'graphql';
import z from 'zod';

const emailSchema = z.string().email().toLowerCase();
const emailSchema = z.email().toLowerCase();

const validate = (value: any, ast?: ASTNode): string => {
if (typeof value !== 'string') {
Expand Down
5 changes: 1 addition & 4 deletions apps/function-app/src/core/graphql/scalars/UUID.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,7 @@ import type { UUID } from 'node:crypto';
import { type ASTNode, GraphQLError, GraphQLScalarType, type GraphQLScalarTypeConfig, Kind } from 'graphql';
import z from 'zod';

const uuidSchema = z
.string()
.uuid()
.transform((x) => x as UUID);
const uuidSchema = z.uuid().transform((x) => x as UUID);

const validate = (value: any, ast?: ASTNode) => {
if (typeof value !== 'string') {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Entity1Loader, Entity2Loader } from './types';
export const createLoaders = () => {
const entity1Loader = new Entity1Loader(async (ids) => {
console.log(`Loading Entity1 for IDs: ${ids}`);
if (Math.random() >= 0.75) {
if (Math.random() >= 0.25) {
console.error('Error getting data from DB');
throw new Error('Error getting data from DB');
}
Expand Down
10 changes: 5 additions & 5 deletions apps/nuxt-webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
"@apollo/client": "^3.14.0",
"@js-joda/core": "^5.6.5",
"@vue/apollo-composable": "^4.2.2",
"vue": "^3.5.22",
"vue": "^3.5.26",
"vue-router": "latest"
},
"devDependencies": {
"@graphql-codegen/cli": "^6.0.1",
"@graphql-codegen/cli": "^6.1.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@shellicar/build-version": "^1.3.1",
"graphql": "^16.11.0",
"nuxt": "^3.19.3",
"vue-tsc": "^3.1.1"
"graphql": "^16.12.0",
"nuxt": "4.2.2",
"vue-tsc": "^3.2.1"
}
}
18 changes: 9 additions & 9 deletions apps/svelte-webapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,29 +15,29 @@
},
"devDependencies": {
"@fontsource/fira-mono": "^5.2.7",
"@graphql-codegen/cli": "^6.0.1",
"@graphql-codegen/cli": "^6.1.0",
"@graphql-codegen/fragment-matcher": "^6.0.0",
"@homebound/graphql-typescript-scalar-type-policies": "^2.12.0",
"@neoconfetti/svelte": "^2.2.2",
"@shellicar-core-foundation/ui-config": "workspace:^",
"@shellicar/build-version": "^1.3.1",
"@shellicar/svelte-adapter-azure-functions": "^0.4.0",
"@shellicar/svelte-adapter-azure-functions": "^1.0.1",
"@sveltejs/adapter-auto": "^7.0.0",
"@sveltejs/kit": "^2.47.3",
"@sveltejs/kit": "^2.49.2",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"autoprefixer": "^10.4.21",
"autoprefixer": "^10.4.23",
"graphql-codegen-svelte-apollo": "^1.1.0",
"svelte": "^5.41.3",
"svelte-check": "^4.3.3",
"tailwindcss": "==3.4.17",
"svelte": "^5.46.1",
"svelte-check": "^4.3.5",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"vite": "^7.1.12"
"vite": "^7.3.0"
},
"dependencies": {
"@apollo/client": "^3.14.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@js-joda/core": "^5.6.5",
"@shellicar-core-foundation/ui-svelte": "workspace:^",
"graphql": "^16.11.0"
"graphql": "^16.12.0"
}
}
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.0/schema.json",
"$schema": "https://biomejs.dev/schemas/2.3.10/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
Expand Down
14 changes: 7 additions & 7 deletions build/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@
"devDependencies": {
"@shellicar-core-foundation/typescript-config": "workspace:^",
"@shellicar/build-version": "^1.3.1",
"@tsconfig/node20": "^20.1.6",
"@types/node": "^24.9.1",
"esbuild": "^0.25.11",
"glob": "^11.0.3",
"tsup": "^8.5.0",
"@tsconfig/node20": "^20.1.8",
"@types/node": "^25.0.3",
"esbuild": "^0.27.2",
"glob": "^13.0.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"unplugin": "^2.3.10",
"vite": "^7.1.12"
"unplugin": "^2.3.11",
"vite": "^7.3.0"
}
}
2 changes: 1 addition & 1 deletion infrastructure/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"author": "",
"license": "ISC",
"devDependencies": {
"@dotenvx/dotenvx": "^1.51.0"
"@dotenvx/dotenvx": "^1.51.2"
}
}
17 changes: 5 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@shellicar-core-foundation/root",
"version": "0.1.0",
"description": "@shellicar/core-foundation is a comprehensive starter repository for building modern applications, including monorepo setups, infrastructure, web frameworks, Docker, TypeScript, testing, and more.",
"packageManager": "pnpm@10.19.0",
"packageManager": "pnpm@10.26.2+sha512.0e308ff2005fc7410366f154f625f6631ab2b16b1d2e70238444dd6ae9d630a8482d92a451144debc492416896ed16f7b114a86ec68b8404b2443869e68ffda6",
"main": "index.js",
"scripts": {
"lint": "biome lint",
Expand All @@ -24,19 +24,12 @@
"author": "",
"license": "ISC",
"dependencies": {
"turbo": "^2.5.8"
},
"pnpm": {
"overrides": {
"tailwindcss": "==3.4.17",
"cookie": "^1",
"esbuild": "^0.25.11"
}
"turbo": "^2.7.2"
},
"devDependencies": {
"@biomejs/biome": "^2.3.0",
"lefthook": "^2.0.0",
"npm-check-updates": "^19.1.1",
"@biomejs/biome": "^2.3.10",
"lefthook": "^2.0.13",
"npm-check-updates": "^19.2.0",
"syncpack": "^13.0.4",
"typescript": "^5.9.3"
}
Expand Down
10 changes: 5 additions & 5 deletions packages/atdd-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
"test": "run-s test:unit test:acceptance"
},
"devDependencies": {
"@cucumber/cucumber": "^12.2.0",
"@cucumber/cucumber": "^12.4.0",
"@shellicar-core-foundation/typescript-config": "workspace:^",
"@types/chai": "^5.2.3",
"@types/node": "^24.9.1",
"chai": "^6.2.0",
"@types/node": "^25.0.3",
"chai": "^6.2.2",
"npm-run-all2": "^8.0.4",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.2"
"vitest": "^4.0.16"
}
}
4 changes: 2 additions & 2 deletions packages/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
"license": "ISC",
"devDependencies": {
"@shellicar-core-foundation/typescript-config": "workspace:^",
"terser": "^5.44.0",
"tsup": "^8.5.0",
"terser": "^5.44.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {}
Expand Down
28 changes: 14 additions & 14 deletions packages/monitor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,26 +34,26 @@
"license": "ISC",
"devDependencies": {
"@shellicar-core-foundation/typescript-config": "workspace:^",
"terser": "^5.44.0",
"tsup": "^8.5.0",
"terser": "^5.44.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@azure/monitor-opentelemetry": "^1.14.0",
"@azure/monitor-opentelemetry": "^1.14.2",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/api-logs": "^0.207.0",
"@opentelemetry/instrumentation": "^0.207.0",
"@opentelemetry/instrumentation-http": "^0.207.0",
"@opentelemetry/instrumentation-winston": "^0.52.0",
"@opentelemetry/api-logs": "^0.208.0",
"@opentelemetry/instrumentation": "^0.208.0",
"@opentelemetry/instrumentation-http": "^0.208.0",
"@opentelemetry/instrumentation-winston": "^0.53.0",
"@opentelemetry/resources": "^2.2.0",
"@opentelemetry/sdk-logs": "^0.207.0",
"@opentelemetry/sdk-logs": "^0.208.0",
"@opentelemetry/sdk-trace-node": "^2.2.0",
"@opentelemetry/semantic-conventions": "^1.37.0",
"@opentelemetry/winston-transport": "^0.18.0",
"applicationinsights": "^3.12.0",
"winston": "^3.18.3",
"@shellicar/winston-azure-application-insights": "^6.0.1",
"@opentelemetry/semantic-conventions": "^1.38.0",
"@opentelemetry/winston-transport": "^0.19.0",
"@shellicar/winston-azure-application-insights": "^6.0.3",
"applicationinsights": "^3.12.1",
"winston": "^3.19.0",
"winston-transport": "^4.9.0",
"zod": "^3.25.76"
"zod": "^4.2.1"
}
}
28 changes: 14 additions & 14 deletions packages/server-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,29 +30,29 @@
"license": "ISC",
"devDependencies": {
"@shellicar-core-foundation/typescript-config": "workspace:^",
"terser": "^5.44.0",
"tsup": "^8.5.0",
"terser": "^5.44.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@azure/identity": "^4.13.0",
"@azure/monitor-opentelemetry": "^1.14.0",
"@azure/monitor-opentelemetry": "^1.14.2",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/api-logs": "^0.207.0",
"@opentelemetry/instrumentation": "^0.207.0",
"@opentelemetry/instrumentation-http": "^0.207.0",
"@opentelemetry/instrumentation-winston": "^0.52.0",
"@opentelemetry/api-logs": "^0.208.0",
"@opentelemetry/instrumentation": "^0.208.0",
"@opentelemetry/instrumentation-http": "^0.208.0",
"@opentelemetry/instrumentation-winston": "^0.53.0",
"@opentelemetry/resources": "^2.2.0",
"@opentelemetry/sdk-logs": "^0.207.0",
"@opentelemetry/sdk-logs": "^0.208.0",
"@opentelemetry/sdk-trace-node": "^2.2.0",
"@opentelemetry/semantic-conventions": "^1.37.0",
"@opentelemetry/winston-transport": "^0.18.0",
"@opentelemetry/semantic-conventions": "^1.38.0",
"@opentelemetry/winston-transport": "^0.19.0",
"@shellicar-core-foundation/common": "workspace:^",
"@shellicar-core-foundation/monitor": "workspace:^",
"@shellicar/core-di": "^3.1.1",
"applicationinsights": "^3.12.0",
"winston": "^3.18.3",
"@shellicar/core-di": "^3.1.2",
"applicationinsights": "^3.12.1",
"winston": "^3.19.0",
"winston-transport": "^4.9.0",
"zod": "^3.25.76"
"zod": "^4.2.1"
}
}
6 changes: 3 additions & 3 deletions packages/ui-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
},
"devDependencies": {
"@shellicar-core-foundation/typescript-config": "workspace:^",
"@types/node": "^24.9.1",
"tailwindcss": "==3.4.17",
"tsup": "^8.5.0",
"@types/node": "^25.0.3",
"tailwindcss": "^3.4.19",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}
10 changes: 5 additions & 5 deletions packages/ui-nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
},
"devDependencies": {
"@nuxt/eslint": "latest",
"eslint": "^9.38.0",
"nuxt": "^3.19.3",
"eslint": "^9.39.2",
"nuxt": "4.2.2",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vue-tsc": "^3.1.1"
"vite": "^7.3.0",
"vue-tsc": "^3.2.1"
},
"dependencies": {
"vue": "^3.5.22"
"vue": "^3.5.26"
}
}
16 changes: 8 additions & 8 deletions packages/ui-svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@
"devDependencies": {
"@shellicar-core-foundation/ui-config": "workspace:^",
"@sveltejs/adapter-auto": "^7.0.0",
"@sveltejs/kit": "^2.47.3",
"@sveltejs/package": "^2.5.4",
"@sveltejs/kit": "^2.49.2",
"@sveltejs/package": "^2.5.7",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"autoprefixer": "^10.4.21",
"publint": "^0.3.15",
"svelte": "^5.41.3",
"svelte-check": "^4.3.3",
"tailwindcss": "==3.4.17",
"autoprefixer": "^10.4.23",
"publint": "^0.3.16",
"svelte": "^5.46.1",
"svelte-check": "^4.3.5",
"tailwindcss": "^3.4.19",
"typescript": "^5.9.3",
"vite": "^7.1.12"
"vite": "^7.3.0"
}
}
Loading
Loading