txtdot/package.json

52 lines
1.5 KiB
JSON
Raw Normal View History

2023-08-13 20:38:33 +03:00
{
2023-08-13 21:39:23 +03:00
"name": "txtdot",
2023-09-17 11:26:52 +03:00
"version": "1.3.0",
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.10.2",
2023-08-16 10:36:04 +03:00
"@fastify/swagger": "^8.8.0",
2023-08-16 10:49:55 +03:00
"@fastify/swagger-ui": "^1.9.3",
"@fastify/view": "^8.0.0",
2023-08-13 20:38:33 +03:00
"@mozilla/readability": "^0.4.4",
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
2023-08-14 13:03:19 +03:00
"fastify": "^4.21.0",
"ip-range-check": "^0.2.0",
2023-08-25 11:42:18 +03:00
"jsdom": "^22.1.0",
"json-schema-to-ts": "^2.9.2",
"micromatch": "^4.0.5"
2023-08-13 20:38:33 +03:00
},
"devDependencies": {
"@types/ejs": "^3.1.2",
2023-08-13 20:38:33 +03:00
"@types/express": "^4.17.17",
"@types/jsdom": "^21.1.1",
"@types/micromatch": "^4.0.2",
2023-08-13 20:38:33 +03:00
"@types/node": "^20.4.10",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
2023-08-15 17:15:54 +03:00
"clean-css-cli": "^5.6.2",
"copyfiles": "^2.4.1",
2023-08-13 20:38:33 +03:00
"eslint": "^8.47.0",
"tsc-watch": "^6.0.4",
2023-08-13 20:38:33 +03:00
"typescript": "^5.1.6"
},
"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 \"\"",
2023-08-15 17:36:35 +03:00
"dev": "tsc-watch --onSuccess \"node ./dist/src/app.js\""
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
}