This commit is contained in:
root
2025-12-20 19:00:17 +01:00
commit 02830aa7df
14 changed files with 2967 additions and 0 deletions

32
package.json Normal file
View File

@@ -0,0 +1,32 @@
{
"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"
}
}