txtdot/package.json

57 lines
1.7 KiB
JSON
Raw Normal View History

2023-08-13 20:38:33 +03:00
{
2023-08-13 21:39:23 +03:00
"name": "txtdot",
"version": "1.5.2",
2023-08-13 21:39:23 +03:00
"private": true,
2023-08-13 20:38:33 +03:00
"description": "",
"main": "dist/app.js",
"dependencies": {
"@fastify/static": "^6.12.0",
"@fastify/swagger": "^8.13.0",
"@fastify/swagger-ui": "^2.1.0",
"@fastify/view": "^8.2.0",
"@mozilla/readability": "^0.5.0",
"axios": "^1.6.5",
"dompurify": "^3.0.8",
2023-08-13 20:38:33 +03:00
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"fastify": "^4.25.2",
2023-09-21 10:00:17 +03:00
"iconv-lite": "^0.6.3",
"ip-range-check": "^0.2.0",
"json-schema-to-ts": "^3.0.0",
"linkedom": "^0.16.6",
"micromatch": "^4.0.5"
2023-08-13 20:38:33 +03:00
},
"devDependencies": {
"@types/dompurify": "^3.0.5",
"@types/ejs": "^3.1.5",
"@types/jsdom": "^21.1.6",
"@types/micromatch": "^4.0.6",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"clean-css-cli": "^5.6.3",
2023-08-15 17:15:54 +03:00
"copyfiles": "^2.4.1",
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
2023-08-13 20:38:33 +03:00
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
2023-08-15 17:34:39 +03:00
"build": "npm run clean-css && copyfiles ./templates/*.ejs .env ./dist/ && tsc",
"start": "cd ./dist && node ./src/app.js",
2023-08-28 22:15:13 +03:00
"start:docker": "node ./src/app.js",
2023-08-15 17:15:54 +03:00
"clean-css": "cleancss --batch static/*.css -o dist/static --batch-suffix \"\"",
"dev": "tsc-watch --onSuccess \"node ./dist/src/app.js\"",
"format": "prettier --write .",
"format:check": "prettier --check ."
2023-08-13 20:38:33 +03:00
},
"keywords": [],
2023-08-14 14:37:30 +03:00
"authors": [
"Artemy Egorov <me@artegoser.ru> https://github.com/artegoser",
"DarkCat09 <darkcat09@vivaldi.net> https://dc09.ru/",
"megahomyak https://github.com/megahomyak"
],
"license": "MIT"
2023-08-13 20:38:33 +03:00
}