From b8cf876692a573396f7b98d14b3128d9ce795dec Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sat, 2 Jul 2022 15:07:01 -0500 Subject: [PATCH] Clean up old scripts --- package.json | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 92912ea..170dabf 100644 --- a/package.json +++ b/package.json @@ -24,13 +24,11 @@ "test-postbuild-api": "run-s test-listings", "test-postbuild-functions": "ava ./test/main.js --verbose", "test": "ava --timeout=1m --verbose", - "dev": "nuxt", - "build": "nuxt build", + "dev": "npm run dev-astro", + "build": "npm run generate-astro", "build-api": "npm run clone-readme && npm run build-lists -- --with-api --no-lists", "build-lists-and-api": "npm run clone-readme && npm run build-lists -- --with-api", - "start": "nuxt start", "generate-dev": "npm run generate && npm test", - "generate": "npm run clone-readme && npm run build-lists && npm run generate-nuxt && npm run generate-eleventy", "build-lists": "npm run test-prebuild && node -r esm -r tsconfig-paths/register build-lists.js", "setup-stork": "run-s download-stork-toml download-stork-executable", "build-stork-index": "./$npm_package_config_stork_executable build --input $npm_package_config_stork_toml --output $npm_package_config_stork_index", @@ -43,13 +41,7 @@ "stork-netlify": "chmod +x scripts/stork-netlify.sh && ./scripts/stork-netlify.sh", "dev-astro": "astro dev", "generate-astro": "astro build --experimental-ssr", - "generate-nuxt": "NODE_OPTIONS=--max-old-space-size=60000 nuxt generate", - "generate-eleventy": "node --max-old-space-size=60000 -r esm node_modules/.bin/eleventy --quiet", "generate-postcss": "ENV=production postcss assets/css/tailwind.css --o static/tailwind.css", - "dev-eleventy": "node --max-old-space-size=60000 -r esm node_modules/.bin/eleventy --quiet --watch --serve", - "dev-eleventy-debug": "DEBUG=Eleventy* node --max-old-space-size=60000 -r esm node_modules/.bin/eleventy --quiet --watch --serve", - "dev-eleventy-benchmark": "DEBUG=Eleventy:Benchmark* node --max-old-space-size=60000 -r esm node_modules/.bin/eleventy --quiet --watch --serve", - "dev-eleventy-computed": "DEBUG=Eleventy:ComputedData* node --max-old-space-size=60000 -r esm node_modules/.bin/eleventy --quiet --watch --serve", "lint": "eslint --ext .js,.vue --ignore-path .gitignore .", "lint:fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .", "precommit": "npm run lint",