This repository has been archived on 2022-08-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Backend/package.json
2020-12-27 23:27:35 +01:00

55 lines
1.3 KiB
JSON

{
"name": "librepay",
"version": "1.0.0",
"description": "Next-gen payment processor for cryptocurrencies.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/app.ts"
},
"repository": {
"type": "git",
"url": "https://nicolasklier.de:3000/Nicolas/Uplata.git"
},
"keywords": [
"payment",
"crypto",
"processor",
"self",
"hosted"
],
"author": "Mondei1",
"license": "MIT",
"dependencies": {
"argon2": "^0.27.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"got": "^11.8.1",
"jayson": "^3.4.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.8",
"mysql": "^2.18.1",
"socket.io": "^2.3.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"winston": "^3.3.3",
"zeromq": "^6.0.0-beta.6"
},
"devDependencies": {
"@types/typescript": "2.0.0",
"@types/body-parser": "1.19.0",
"@types/cors": "2.8.9",
"@types/express": "4.17.9",
"@types/winston": "2.4.4",
"@types/dotenv": "8.2.0",
"@types/jsonwebtoken": "8.5.0",
"@types/mysql": "2.15.16",
"@types/mongoose": "5.10.3",
"@types/argon2": "0.15.0",
"@types/zeromq": "4.6.3",
"@types/socket.io": "2.1.12"
}
}