mirror of
https://github.com/complexcaresolutions/cms.c2sgmbh.git
synced 2026-03-17 17:24:12 +00:00
Fixes two high-severity Dependabot alerts for minimatch ReDoS vulnerabilities (nested extglobs + GLOBSTAR backtracking). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
103 lines
4.2 KiB
JSON
103 lines
4.2 KiB
JSON
{
|
|
"name": "payload-cms",
|
|
"version": "1.0.0",
|
|
"description": "A blank template to get started with Payload 3.0",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "cross-env NODE_OPTIONS=\"--no-deprecation --max-old-space-size=4096\" next build",
|
|
"dev": "cross-env NODE_OPTIONS=--no-deprecation next dev",
|
|
"devsafe": "rm -rf .next && cross-env NODE_OPTIONS=--no-deprecation next dev",
|
|
"generate:importmap": "cross-env NODE_OPTIONS=--no-deprecation payload generate:importmap",
|
|
"generate:types": "cross-env NODE_OPTIONS=--no-deprecation payload generate:types",
|
|
"lint": "cross-env NODE_OPTIONS=--no-deprecation eslint src",
|
|
"check:frameworks": "bash ./scripts/check-framework-updates.sh",
|
|
"typecheck": "cross-env NODE_OPTIONS=\"--no-deprecation --max-old-space-size=4096\" tsc --noEmit",
|
|
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx}\" --ignore-unknown",
|
|
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx}\" --ignore-unknown",
|
|
"payload": "cross-env NODE_OPTIONS=--no-deprecation payload",
|
|
"start": "cross-env NODE_OPTIONS=--no-deprecation next start",
|
|
"test": "pnpm run test:unit && pnpm run test:int && pnpm run test:e2e",
|
|
"test:unit": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts tests/unit",
|
|
"test:int": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts tests/int",
|
|
"test:security": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts tests/unit/security tests/int/security-api.int.spec.ts",
|
|
"test:access-control": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts tests/unit/access-control",
|
|
"test:coverage": "cross-env NODE_OPTIONS=--no-deprecation vitest run --config ./vitest.config.mts --coverage",
|
|
"test:e2e": "test -f .next/BUILD_ID || (echo 'Error: No build found. Run pnpm build first.' && exit 1) && cross-env NODE_OPTIONS=--no-deprecation pnpm exec playwright test",
|
|
"prepare": "test -d .git && (ln -sf ../../scripts/detect-secrets.sh .git/hooks/pre-commit 2>/dev/null || true) || true"
|
|
},
|
|
"dependencies": {
|
|
"@anthropic-ai/sdk": "^0.78.0",
|
|
"@fullcalendar/core": "^6.1.20",
|
|
"@fullcalendar/daygrid": "^6.1.20",
|
|
"@fullcalendar/interaction": "^6.1.20",
|
|
"@fullcalendar/list": "^6.1.20",
|
|
"@fullcalendar/react": "^6.1.20",
|
|
"@fullcalendar/timegrid": "^6.1.20",
|
|
"@payloadcms/db-postgres": "3.77.0",
|
|
"@payloadcms/next": "3.77.0",
|
|
"@payloadcms/plugin-form-builder": "3.77.0",
|
|
"@payloadcms/plugin-multi-tenant": "3.77.0",
|
|
"@payloadcms/plugin-nested-docs": "3.77.0",
|
|
"@payloadcms/plugin-redirects": "3.77.0",
|
|
"@payloadcms/plugin-seo": "3.77.0",
|
|
"@payloadcms/richtext-lexical": "3.77.0",
|
|
"@payloadcms/translations": "3.77.0",
|
|
"@payloadcms/ui": "3.77.0",
|
|
"@types/pdfkit": "^0.17.5",
|
|
"bullmq": "^5.70.1",
|
|
"cross-env": "^10.1.0",
|
|
"date-fns": "^4.1.0",
|
|
"dotenv": "17.3.1",
|
|
"exceljs": "^4.4.0",
|
|
"googleapis": "^171.4.0",
|
|
"ioredis": "^5.9.3",
|
|
"next": "16.2.0-canary.58",
|
|
"node-cron": "^4.2.1",
|
|
"nodemailer": "^8.0.1",
|
|
"payload": "3.77.0",
|
|
"payload-oapi": "^0.2.5",
|
|
"pdfkit": "^0.17.2",
|
|
"react": "19.2.4",
|
|
"react-dom": "19.2.4",
|
|
"recharts": "^3.7.0",
|
|
"sharp": "0.34.5"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "1.58.2",
|
|
"@types/node": "^25.3.0",
|
|
"@types/node-cron": "^3.0.11",
|
|
"@types/nodemailer": "^7.0.11",
|
|
"@types/react": "19.2.14",
|
|
"@types/react-dom": "19.2.3",
|
|
"@vitejs/plugin-react": "5.1.4",
|
|
"@vitest/coverage-v8": "4.0.18",
|
|
"drizzle-kit": "^0.31.9",
|
|
"eslint": "^9.39.3",
|
|
"eslint-config-next": "16.2.0-canary.58",
|
|
"jsdom": "28.1.0",
|
|
"playwright": "1.58.2",
|
|
"prettier": "^3.8.1",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "5.9.3",
|
|
"vite-tsconfig-paths": "6.1.1",
|
|
"vitest": "4.0.18"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.9.0",
|
|
"pnpm": "^9 || ^10"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"sharp",
|
|
"esbuild",
|
|
"unrs-resolver"
|
|
],
|
|
"overrides": {
|
|
"minimatch": ">=10.2.3",
|
|
"esbuild": ">=0.25.0",
|
|
"ajv": ">=8.18.0",
|
|
"ioredis": "5.9.3"
|
|
}
|
|
}
|
|
}
|