blaze/package.json
2023-06-22 16:55:35 +02:00

39 lines
1.1 KiB
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": "npm run html-minify && npx tsc",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q index.js\"",
"html-minify": "html-minifier --input-dir dist --output-dir dist --file-ext html --remove-comments --collapse-whitespace --minify-js true --minify-css true"
},
"author": "Danny Spina",
"license": "ISC",
"dependencies": {
"@mozilla/readability": "^0.4.4",
"compression": "^1.7.4",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fetch": "^1.1.0",
"got": "^13.0.0",
"html-minifier": "^4.0.0",
"linkedom": "^0.14.26",
"node-html-parser": "^6.1.5",
"xhr": "^2.6.0",
"xhr2": "^0.2.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/html-minifier": "^4.0.2",
"@types/jsdom": "^21.1.1",
"@types/node": "^20.3.1",
"concurrently": "^8.2.0",
"nodemon": "^2.0.22",
"typescript": "^5.1.3"
},
"type": "module"
}