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-24 13:48:08 +01:00

48 lines
1.1 KiB
JSON

{
"name": "uplata",
"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": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jayson": "^3.4.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.8",
"mysql": "^2.18.1",
"ts-node": "^9.1.1",
"typeorm": "^0.2.29",
"typescript": "^4.1.3",
"winston": "^3.3.3"
},
"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"
}
}