axp-server/package.json

36 lines
789 B
JSON
Raw Normal View History

2023-07-11 10:25:49 +03:00
{
"name": "axp-server",
2023-10-06 17:21:40 +03:00
"version": "1.4.15",
2023-07-11 10:25:49 +03:00
"description": "My helper library",
"author": "AntoXa PRO <info@antoxa.pro>",
"homepage": "https://antoxahub.ru/antoxa/axp-server",
"repository": {
"type": "git",
"url": "https://antoxahub.ru/antoxa/axp-server.git"
},
"type": "module",
"main": "dist/index.js",
"files": [
"dist",
"tsconfig.json"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "rollup -c --configPlugin @rollup/plugin-typescript",
"prepare": "npm run build"
},
"dependencies": {
2023-10-10 13:48:17 +03:00
"axp-ts": "^1.11.3",
2023-07-11 10:25:49 +03:00
"dotenv": "^16.3.1",
"express": "^4.18.2",
2023-09-20 13:31:00 +03:00
"mongoose": "^6.12.0"
2023-07-11 10:25:49 +03:00
},
"devDependencies": {
2023-10-06 17:21:40 +03:00
"@rollup/plugin-typescript": "^11.1.5",
"@types/express": "^4.17.18",
2023-07-11 10:25:49 +03:00
"prettier": "^2.8.8",
2023-10-06 17:21:40 +03:00
"rollup": "^3.29.4",
2023-09-20 13:31:00 +03:00
"tslib": "^2.6.2"
2023-07-11 10:25:49 +03:00
}
}