mirror of
https://github.com/cupcakearmy/blaze.git
synced 2024-12-22 16:26:26 +00:00
34 lines
875 B
JSON
34 lines
875 B
JSON
{
|
|
"name": "blaze-this-page",
|
|
"version": "1.0.0",
|
|
"description": "The service to navigate the web also with bad connectivity",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"start": "node index.js",
|
|
"build": "npx tsc",
|
|
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q index.js\""
|
|
},
|
|
"author": "Danny Spina",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@mozilla/readability": "^0.4.4",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"fetch": "^1.1.0",
|
|
"got": "^13.0.0",
|
|
"jsdom": "^22.1.0",
|
|
"node-fetch": "^3.3.1",
|
|
"node-html-parser": "^6.1.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.17",
|
|
"@types/jsdom": "^21.1.1",
|
|
"@types/node": "^20.3.1",
|
|
"concurrently": "^8.2.0",
|
|
"nodemon": "^2.0.22",
|
|
"typescript": "^5.1.3"
|
|
},
|
|
"type": "module"
|
|
}
|