{ "name": "mypage", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "dev": "next dev -p 3030", "build": "next build", "start": "next start -p 3030", "lint": "eslint . --ext .ts,.tsx,.js,.jsx", "lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix", "format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"", "format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\"", "validate-posts": "node scripts/validate-posts.js", "build:production": "NODE_ENV=production npm run build", "validate:env": "node -e \"require('./lib/env-validation').validateEnvironment()\"", "docker:build": "docker build -t mypage:latest -f Dockerfile.nextjs .", "docker:run": "docker run -p 3030:3030 --env-file .env.production mypage:latest", "analyze": "ANALYZE=true npm run build", "analyze:server": "BUNDLE_ANALYZE=server npm run build", "analyze:browser": "BUNDLE_ANALYZE=browser npm run build" }, "repository": { "type": "git", "url": "ssh://git@192.168.1.53:2222/raresj/mypage.git" }, "keywords": [], "author": "", "license": "ISC", "dependencies": { "@tailwindcss/postcss": "^4.1.17", "@tailwindcss/typography": "^0.5.19", "@types/node": "^24.10.0", "@types/react": "^19.2.2", "autoprefixer": "^10.4.21", "gray-matter": "^4.0.3", "next": "^16.0.1", "next-themes": "^0.4.6", "postcss": "^8.5.6", "react": "^19.2.0", "react-dom": "^19.2.0", "react-markdown": "^10.1.0", "rehype-raw": "^7.0.0", "rehype-sanitize": "^6.0.0", "remark": "^15.0.1", "remark-gfm": "^4.0.1", "sharp": "^0.34.5", "tailwindcss": "^4.1.17", "typescript": "^5.9.3", "unist-util-visit": "^5.0.0" }, "devDependencies": { "@eslint/eslintrc": "^3.3.1", "@eslint/js": "^9.39.1", "@next/bundle-analyzer": "^16.0.3", "@typescript-eslint/eslint-plugin": "^8.46.4", "@typescript-eslint/parser": "^8.46.4", "eslint": "^9.39.1", "eslint-config-next": "^16.0.3", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^5.5.4", "prettier": "^3.6.2", "typescript-eslint": "^8.46.4" } }