mempool/lightning-backend/package.json
2022-07-08 18:55:25 +02:00

26 lines
645 B
JSON

{
"name": "lightning-backend",
"version": "1.0.0",
"description": "Backend for the Mempool Lightning Explorer",
"license": "AGPL-3.0",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "./node_modules/typescript/bin/tsc",
"build": "npm run tsc",
"start": "node --max-old-space-size=2048 dist/index.js"
},
"author": "",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.24"
},
"dependencies": {
"axios": "^0.27.2",
"express": "^4.17.3",
"ln-service": "^53.11.0",
"mysql2": "^2.3.3",
"typescript": "^4.6.3"
}
}