Skip to content
Merged
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
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,34 +32,34 @@
},
"scripts": {
"_format": "prettier --loglevel=warn \"{src,tools,scripts,tests,.github}/**/*.{mjs,cjs,js,mts,md,yml,json,html,ts}\" \"*.{mjs,cjs,js,mts,yml,json,html,ts}\" \".*.{mjs,cjs,js,yml,json,html,ts}\" \"!CHANGELOG.md\" \"!**/*/package-lock.json\" \"!.github/**/*.md\"",
"clean": "rm -rf dist/",
"start": "node ./bin/run.js",
"build": "tsc --project tsconfig.build.json",
"certs": "openssl req -x509 -out localhost.crt -keyout localhost.key -newkey rsa:2048 -nodes -sha256 -subj \"/CN=localhost\" -extensions EXT -config certconf",
"clean": "rm -rf dist/",
"dev": "tsc --project tsconfig.build.json --watch",
"test": "npm run test:dev",
"docs": "npm run --prefix=site build",
"e2e": "node ./tools/e2e/run.js",
"format": "npm run _format -- --write",
"format:check": "npm run _format -- --check",
"start": "node ./bin/run.js",
"test": "npm run test:dev",
"lint": "eslint --cache \"{src,scripts,tests,.github}/**/*.{mjs,cjs,js,md,html}\" \"*.{mjs,cjs,js,md,html}\"",
"lint:fix": "npm run lint --fix",
"test:dev": "run-s certs test:init:* test:dev:*",
"test:dev:vitest": "vitest run tests/unit/ && vitest run tests/integration",
"test:init": "run-s test:init:*",
"test:init:cli-version": "npm run start -- --version",
"test:init:cli-help": "npm run start -- --help",
"test:init:cli-version": "npm run start -- --version",
"test:init:eleventy-deps": "cd tests/integration/__fixtures__/eleventy-site && pnpm install --frozen-lockfile",
"test:init:hugo-deps": "npm ci --prefix tests/integration/__fixtures__/hugo-site --no-audit",
"test:init:monorepo-deps": "cd tests/integration/__fixtures__/monorepo && pnpm install --frozen-lockfile",
"test:init:next-deps": "npm ci --prefix tests/integration/__fixtures__/next-app-without-config --no-audit && npm ci --prefix tests/integration/__fixtures__/next-app --no-audit",
"test:dev:vitest": "vitest run tests/unit/ && vitest run tests/integration",
"test:ci:vitest:unit": "vitest run --coverage tests/unit/",
"test:ci:vitest:integration": "vitest run --coverage tests/integration/",
"e2e": "node ./tools/e2e/run.js",
"docs": "npm run --prefix=site build",
"watch": "c8 --reporter=lcov vitest --watch",
"test:ci:vitest:unit": "vitest run --coverage tests/unit/",
"postinstall": "node ./scripts/postinstall.js",
"prepublishOnly": "npm shrinkwrap",
"certs": "openssl req -x509 -out localhost.crt -keyout localhost.key -newkey rsa:2048 -nodes -sha256 -subj \"/CN=localhost\" -extensions EXT -config certconf",
"typecheck": "tsc",
"typecheck:watch": "tsc --watch"
"typecheck:watch": "tsc --watch",
"watch": "c8 --reporter=lcov vitest --watch"
},
"dependencies": {
"@fastify/static": "7.0.4",
Expand Down
Loading