initial commit

This commit is contained in:
chungyeong
2026-02-19 17:28:58 +09:00
commit 02970df6af
34 changed files with 5673 additions and 0 deletions

18
package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "airplane",
"version": "0.1.0",
"private": true,
"type": "commonjs",
"scripts": {
"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",
"test": "node --test"
},
"dependencies": {
"fastify": "^5.2.2",
"mysql2": "^3.15.2"
}
}