Files
mintel.me/package.json
Marc Mintel 072b6b13f1
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 3m43s
Build & Deploy / 🏗️ Build (push) Failing after 37s
Build & Deploy / 🧪 QA (push) Failing after 3m40s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🩺 Health Check (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 2s
feat(cms): migrate from Directus to Payload v3 and remove contentlayer
2026-02-22 20:50:51 +01:00

56 lines
2.5 KiB
JSON
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"name": "@mintel/mintel.me",
"private": true,
"type": "module",
"packageManager": "pnpm@10.18.3",
"scripts": {
"dev": "docker network create infra 2>/dev/null || true && echo \"\\n🚀 Development Environment Starting...\\n\\n📱 App: http://mintel.localhost\\n🖼 Imgproxy: http://img.mintel.localhost\\n🚦 Caddy Proxy: http://localhost:80\\n\" && lsof -ti:3000 | xargs kill -9 2>/dev/null || true && rm -rf apps/web/.next apps/web/.contentlayer/.cache 2>/dev/null || true && docker rm -f mintel-me-gatekeeper 2>/dev/null || true && COMPOSE_PROJECT_NAME=mintel-me docker-compose -f docker-compose.dev.yml down --remove-orphans && COMPOSE_PROJECT_NAME=mintel-me docker-compose -f docker-compose.dev.yml up -d app postgres-db gatekeeper imgproxy && DATABASE_URI=\"postgres://directus:directus@localhost:5432/directus\" PAYLOAD_SECRET=\"dev-secret\" pnpm -r dev",
"dev:clean": "pnpm dev:stop && rm -rf apps/web/.next apps/web/.contentlayer apps/web/node_modules && pnpm install && pnpm dev",
"dev:stop": "lsof -ti:3000,3001,3002 | xargs kill -9 2>/dev/null || true && COMPOSE_PROJECT_NAME=mintel-me docker-compose -f docker-compose.dev.yml down",
"dev:local": "pnpm -r dev",
"build": "pnpm -r build",
"start": "pnpm -r start",
"lint": "pnpm -r lint",
"test": "pnpm -r test",
"lint:yaml": "node scripts/lint-yaml.js",
"optimize-blog": "tsx --env-file=.env apps/web/scripts/optimize-blog-post.ts",
"prepare": "husky"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.0",
"@mintel/cli": "^1.7.3",
"@mintel/eslint-config": "^1.7.3",
"@mintel/husky-config": "^1.7.3",
"@mintel/next-config": "^1.7.3",
"@mintel/next-utils": "^1.7.15",
"@mintel/tsconfig": "^1.7.3",
"@next/eslint-plugin-next": "^16.1.6",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/context-async-hooks": "^2.1.0",
"@opentelemetry/core": "^2.1.0",
"@opentelemetry/sdk-trace-base": "^2.1.0",
"eslint": "10.0.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"js-yaml": "^4.1.1",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"typescript-eslint": "^8.54.0",
"webpack": "^5.96.1"
},
"pnpm": {
"overrides": {
"@sentry/nextjs": "10.38.0",
"eslint": "10.0.0",
"@directus/sdk": "21.0.0"
}
},
"dependencies": {
"@eslint/compat": "^2.0.2",
"@mintel/acquisition": "link:../at-mintel/packages/acquisition-library",
"tsx": "^4.21.0"
}
}