123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- {
- "name": "root",
- "type": "module",
- "version": "0.0.0",
- "private": true,
- "repository": {
- "type": "git",
- "url": "https://github.com/withastro/astro.git"
- },
- "scripts": {
- "release": "pnpm run build && changeset publish",
- "build": "turbo run build --filter=astro --filter=create-astro --filter=\"@astrojs/*\" --filter=\"@benchmark/*\"",
- "build:ci": "turbo run build:ci --filter=astro --filter=create-astro --filter=\"@astrojs/*\" --filter=\"@benchmark/*\"",
- "build:examples": "turbo run build --filter=\"@example/*\"",
- "dev": "turbo run dev --concurrency=40 --parallel --filter=astro --filter=create-astro --filter=\"@astrojs/*\" --filter=\"@benchmark/*\"",
- "format": "pnpm run format:code",
- "format:ci": "pnpm run format:code",
- "format:code": "prettier -w \"**/*\" --ignore-unknown --cache",
- "format:imports": "organize-imports-cli ./packages/*/tsconfig.json ./packages/*/*/tsconfig.json",
- "test": "turbo run test --concurrency=1 --filter=astro --filter=create-astro --filter=\"@astrojs/*\"",
- "test:match": "cd packages/astro && pnpm run test:match",
- "test:unit": "cd packages/astro && pnpm run test:unit",
- "test:unit:match": "cd packages/astro && pnpm run test:unit:match",
- "test:smoke": "pnpm test:smoke:example && pnpm test:smoke:docs",
- "test:smoke:example": "turbo run build --concurrency=100% --filter=\"@example/*\"",
- "test:smoke:docs": "turbo run build --filter=docs",
- "test:check-examples": "node ./scripts/smoke/check.js",
- "test:vite-ci": "turbo run test --filter=astro",
- "test:e2e": "cd packages/astro && pnpm playwright install && pnpm run test:e2e",
- "test:e2e:match": "cd packages/astro && pnpm playwright install && pnpm run test:e2e:match",
- "test:e2e:hosts": "turbo run test:hosted",
- "benchmark": "astro-benchmark",
- "lint": "eslint . --report-unused-disable-directives",
- "version": "changeset version && node ./scripts/deps/update-example-versions.js && pnpm install --no-frozen-lockfile && pnpm run format",
- "preinstall": "npx only-allow pnpm"
- },
- "workspaces": [
- "packages/markdown/*",
- "packages/integrations/*",
- "packages/*"
- ],
- "engines": {
- "node": ">=18.14.1",
- "pnpm": ">=8.6.12"
- },
- "packageManager": "pnpm@8.6.12",
- "dependencies": {
- "astro-benchmark": "workspace:*"
- },
- "devDependencies": {
- "@astrojs/check": "^0.3.1",
- "@changesets/changelog-github": "^0.4.8",
- "@changesets/cli": "^2.26.2",
- "@types/node": "^18.17.8",
- "@typescript-eslint/eslint-plugin": "^6.11.0",
- "@typescript-eslint/parser": "^6.11.0",
- "esbuild": "^0.19.6",
- "eslint": "^8.54.0",
- "eslint-config-prettier": "^9.0.0",
- "eslint-plugin-no-only-tests": "^3.1.0",
- "eslint-plugin-prettier": "^5.0.0",
- "eslint-plugin-regexp": "^2.2.0",
- "globby": "^14.0.0",
- "only-allow": "^1.1.1",
- "organize-imports-cli": "^0.10.0",
- "prettier": "^3.1.0",
- "prettier-plugin-astro": "^0.12.2",
- "tiny-glob": "^0.2.9",
- "turbo": "^1.10.12",
- "typescript": "~5.2.2"
- },
- "pnpm": {
- "packageExtensions": {
- "vite-svg-loader": {
- "peerDependenciesMeta": {
- "vue": {
- "optional": true
- }
- }
- },
- "svelte2tsx": {
- "peerDependenciesMeta": {
- "typescript": {
- "optional": true
- }
- }
- },
- "rehype-pretty-code": {
- "peerDependenciesMeta": {
- "shiki": {
- "optional": true
- }
- }
- }
- },
- "overrides": {
- "organize-imports-cli>ts-morph": "^19.0.0",
- "tsconfig-resolver>type-fest": "3.0.0"
- },
- "peerDependencyRules": {
- "ignoreMissing": [
- "rollup",
- "@babel/core",
- "@babel/plugin-transform-react-jsx",
- "vite",
- "react",
- "react-dom",
- "@types/react",
- "tslib",
- "quill-delta",
- "rxjs"
- ],
- "allowAny": [
- "astro"
- ]
- }
- }
- }
|