Files
cbd420_ipn/package.json
2025-12-20 19:00:17 +01:00

33 lines
731 B
JSON

{
"name": "cbd420-ipn-listener",
"version": "1.0.0",
"description": "NOWPayments IPN listener for payment validation and database updates",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"watch": "tsc --watch"
},
"keywords": [
"nowpayments",
"ipn",
"webhook",
"payment"
],
"author": "",
"license": "ISC",
"dependencies": {
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mysql2": "^3.16.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}