blaze/package.json

38 lines
1.1 KiB
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",
2023-06-19 19:05:58 +00:00
"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"
2023-06-18 21:20:52 +00:00
},
"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-20 07:39:22 +00:00
"got": "^13.0.0",
2023-06-19 19:05:58 +00:00
"html-minifier": "^4.0.0",
2023-06-20 09:48:11 +00:00
"linkedom": "^0.14.26",
2023-06-20 10:19:17 +00:00
"node-html-parser": "^6.1.5",
2023-06-20 10:23:06 +00:00
"xhr": "^2.6.0",
"xhr2": "^0.2.1"
2023-06-18 21:20:52 +00:00
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/html-minifier": "^4.0.2",
2023-06-18 21:20:52 +00:00
"@types/jsdom": "^21.1.1",
"@types/node": "^20.3.1",
"concurrently": "^8.2.0",
"nodemon": "^2.0.22",
"typescript": "^5.1.3"
},
"type": "module"
}