blaze/package.json

34 lines
875 B
JSON
Raw Normal View History

2023-06-18 21:20:52 +00:00
{
"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",
2023-06-19 12:11:22 +00:00
"dotenv": "^16.3.1",
2023-06-18 21:20:52 +00:00
"express": "^4.18.2",
"fetch": "^1.1.0",
2023-06-18 21:20:52 +00:00
"got": "^13.0.0",
"jsdom": "^22.1.0",
"node-fetch": "^3.3.1",
"node-html-parser": "^6.1.5"
2023-06-18 21:20:52 +00:00
},
"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"
}