web-check/package.json

74 lines
2.3 KiB
JSON
Raw Permalink Normal View History

2022-06-11 22:59:03 +02:00
{
"name": "web-check",
"type": "module",
2024-06-22 21:40:55 +02:00
"version": "2.0.0",
2024-05-20 23:40:09 +02:00
"homepage": "https://web-check.xyz",
"scripts": {
2024-05-08 22:18:56 +02:00
"start": "node server",
"start-pm": "pm2 start server.js -i max",
2024-05-05 18:41:26 +02:00
"build": "astro check && astro build",
2023-09-03 15:11:15 +02:00
"dev:vercel": "PLATFORM='vercel' npx vercel dev",
2024-05-19 12:50:04 +02:00
"dev:netlify": "PLATFORM='netlify' npx netlify dev",
2024-05-20 23:40:09 +02:00
"dev:api": "DISABLE_GUI='true' PORT='3001' nodemon server",
"dev:astro": "PUBLIC_API_ENDPOINT=http://localhost:3001/api astro dev",
"dev": "concurrently -c magenta,cyan -n backend,frontend 'yarn dev:api' 'yarn dev:astro'"
},
2022-06-11 22:59:03 +02:00
"dependencies": {
2024-05-05 18:41:26 +02:00
"@astrojs/check": "^0.5.10",
"@astrojs/react": "^3.3.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/svelte-fontawesome": "^0.2.2",
2024-05-05 18:41:26 +02:00
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"astro": "^4.7.1",
2024-06-21 23:55:58 +02:00
"axios": "^1.4.8",
"cheerio": "^1.0.0-rc.12",
2023-06-18 22:01:13 +02:00
"chrome-aws-lambda": "^10.1.0",
2024-06-21 23:08:30 +02:00
"chromium": "^3.0.3",
2023-08-10 00:29:39 +02:00
"connect-history-api-fallback": "^2.0.0",
2023-09-03 15:11:15 +02:00
"cors": "^2.8.5",
2023-08-14 23:34:55 +02:00
"csv-parser": "^3.0.0",
2024-05-05 18:41:26 +02:00
"dotenv": "^16.4.5",
"express": "^4.19.2",
2024-03-14 08:57:59 +01:00
"express-rate-limit": "^7.2.0",
"framer-motion": "^11.2.6",
2024-05-05 18:41:26 +02:00
"got": "^14.2.1",
2024-05-08 22:18:56 +02:00
"pm2": "^5.3.1",
"psl": "^1.9.0",
2024-05-05 18:41:26 +02:00
"puppeteer": "^22.8.0",
"puppeteer-core": "^22.8.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-masonry-css": "^1.0.16",
2024-05-05 18:41:26 +02:00
"react-router-dom": "^6.23.0",
"react-simple-maps": "^3.0.0",
2024-05-05 18:41:26 +02:00
"react-toastify": "^10.0.5",
"recharts": "^2.12.6",
"svelte": "^4.2.17",
2023-07-05 02:47:29 +02:00
"traceroute": "^1.0.0",
2024-05-05 18:41:26 +02:00
"typescript": "^5.4.5",
"unzipper": "^0.11.5",
"url-parse": "^1.5.10",
"wappalyzer": "^6.10.65",
"xml2js": "^0.6.2"
2022-06-11 22:59:03 +02:00
},
"devDependencies": {
2024-05-05 18:41:26 +02:00
"@astrojs/cloudflare": "^10.2.5",
"@astrojs/netlify": "^5.2.0",
"@astrojs/node": "^8.2.5",
"@astrojs/partytown": "^2.1.0",
"@astrojs/sitemap": "^3.1.4",
"@astrojs/svelte": "^5.4.0",
"@astrojs/ts-plugin": "^1.6.1",
2024-05-19 12:50:04 +02:00
"@astrojs/vercel": "^7.5.4",
2024-05-20 23:40:09 +02:00
"concurrently": "^8.2.2",
"nodemon": "^3.1.0",
2024-05-19 12:50:04 +02:00
"sass": "^1.77.1"
2022-06-11 22:59:03 +02:00
}
}