initial commit - get basic sailing info

This commit is contained in:
2024-03-30 18:54:57 -06:00
commit 765c8ec746
16 changed files with 26490 additions and 0 deletions

19
package.json Normal file
View File

@ -0,0 +1,19 @@
{
"name": "disney-cruise-prices",
"version": "1.0.0",
"description": "Collects the prices available on https://disneycruise.disney.go.com/",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Mason Payne <mason@masonitestudios.com>",
"license": "MIT",
"dependencies": {
"json2csv": "^6.0.0-alpha.2",
"puppeteer": "^22.6.1"
},
"devDependencies": {
"@types/json2csv": "^5.0.3"
}
}