mango-alerts/package.json

68 lines
2.0 KiB
JSON
Raw Normal View History

2021-04-09 13:51:25 -07:00
{
"name": "mango_alert_server",
"version": "1.0.0",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"build": "tsc",
2021-04-09 14:06:55 -07:00
"start": "node build/index.js",
"start:dev": "ts-node src/index.ts",
"postinstall": "tsc",
"deploy": "git add . && git commit -m Heroku && git push heroku master"
2021-04-09 13:51:25 -07:00
},
"devDependencies": {
"@types/email-validator": "^1.0.6",
"@types/koa": "^2.13.1",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-mongo": "^1.9.0",
"@types/koa-router": "^7.4.1",
"@types/koa__cors": "^3.0.2",
"@types/mongodb": "^3.6.12",
"@types/node": "^14.14.37",
"@types/node-cron": "^2.0.3",
"@types/node-fetch": "^2.5.10",
"@types/node-telegram-bot-api": "^0.51.1",
"@types/nodemailer": "^6.4.1",
"@types/winston": "^2.4.4",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@blockworks-foundation/mango-client": "^0.1.10",
"@koa/cors": "^3.1.0",
2021-04-09 13:59:45 -07:00
"@project-serum/sol-wallet-adapter": "^0.1.8",
2021-04-09 13:51:25 -07:00
"@solana/web3.js": "^1.2.6",
"dotenv": "^8.2.0",
"email-validator": "^2.0.4",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-mongo": "^1.9.3",
"koa-router": "^10.0.0",
"mongodb": "^3.6.6",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.1",
"node-telegram-bot-api": "^0.52.0",
"nodemailer": "^6.5.0",
"twilio": "^3.60.0",
"winston": "^3.3.3",
2021-04-09 14:10:28 -07:00
"winston-discord-transport": "^1.3.0",
"@types/email-validator": "^1.0.6",
"@types/koa": "^2.13.1",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-mongo": "^1.9.0",
"@types/koa-router": "^7.4.1",
"@types/koa__cors": "^3.0.2",
"@types/mongodb": "^3.6.12",
"@types/node": "^14.14.37",
"@types/node-cron": "^2.0.3",
"@types/node-fetch": "^2.5.10",
"@types/node-telegram-bot-api": "^0.51.1",
"@types/nodemailer": "^6.4.1",
"@types/winston": "^2.4.4",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
2021-04-09 13:51:25 -07:00
}
}