Files
air-watcher/package.json
2026-03-05 11:00:45 +09:00

25 lines
653 B
JSON

{
"name": "airplane",
"version": "0.1.0",
"private": true,
"type": "commonjs",
"scripts": {
"start": "concurrently \"npm run crawler\" \"npm run dashboard\"",
"parse": "node src/cli.js",
"watch": "node src/cli.js watch",
"dashboard": "node src/dashboardServer.js",
"dashboard:fastify": "node src/fastifyDashboardServer.js",
"sample:skyscanner": "node src/skyscannerSampleServer.js",
"crawler": "node src/crawlerServer.js",
"test": "node --test"
},
"dependencies": {
"fastify": "^5.2.2",
"mysql2": "^3.15.2",
"patchright": "^1.57.0"
},
"devDependencies": {
"concurrently": "^9.2.1"
}
}