clean unused deps

This commit is contained in:
m5r 2023-04-29 07:43:02 +02:00
parent 8fcf02b121
commit bace157921
3 changed files with 669 additions and 213 deletions

869
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -35,6 +35,7 @@
"@remix-run/express": "1.14.3",
"@remix-run/node": "1.14.3",
"@remix-run/react": "1.14.3",
"@remix-run/server-runtime": "1.14.3",
"@sentry/browser": "7.3.0",
"@sentry/node": "7.3.0",
"@sentry/tracing": "7.3.0",
@ -50,7 +51,6 @@
"express": "4.18.1",
"fathom-client": "3.5.0",
"ioredis": "5.0.6",
"isbot": "3.5.0",
"jotai": "1.7.0",
"luxon": "2.4.0",
"morgan": "1.10.0",
@ -66,7 +66,6 @@
"remix-seo": "0.1.0",
"remix-utils": "3.2.0",
"secure-password": "4.0.0",
"stripe": "9.5.0",
"superjson-remix": "0.2.0",
"tiny-invariant": "1.2.0",
"tslog": "3.3.3",
@ -79,17 +78,13 @@
"@remix-run/dev": "1.14.3",
"@remix-run/eslint-config": "1.14.3",
"@testing-library/cypress": "8.0.2",
"@testing-library/dom": "8.13.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.3.0",
"@testing-library/user-event": "14.2.0",
"@types/compression": "1.7.2",
"@types/express": "4.17.13",
"@types/luxon": "2.3.2",
"@types/morgan": "1.9.3",
"@types/nodemailer": "6.4.4",
"@types/preview-email": "2.0.1",
"@types/ps-node": "0.1.1",
"@types/react": "18.0.10",
"@types/react-dom": "18.0.5",
"@types/secure-password": "3.1.1",
@ -110,10 +105,9 @@
"prettier": "2.6.2",
"prettier-plugin-prisma": "3.14.0",
"prisma": "3.14.0",
"ps-node": "0.1.6",
"start-server-and-test": "1.14.0",
"tailwindcss": "3.0.24",
"ts-eager": "npm:@m5r/ts-eager@2.1.0",
"tsx": "3.12.6",
"typescript": "4.7.2",
"vite": "2.9.9",
"vite-tsconfig-paths": "3.5.0",
@ -146,6 +140,6 @@
},
"prisma": {
"schema": "prisma/schema.prisma",
"seed": "ts-eager prisma/seed.ts"
"seed": "tsx prisma/seed.ts"
}
}

View File

@ -1,7 +1,6 @@
const path = require("path");
const esbuild = require("esbuild");
const { nodeExternalsPlugin } = require("esbuild-node-externals");
const ps = require("ps-node");
const basePath = process.cwd();
const args = process.argv.slice(2);