mirror of
https://github.com/opelly27/streetmerchant.git
synced 2026-05-20 07:37:39 +00:00
48a46d0217
Let CI handle linting
82 lines
2.3 KiB
JSON
82 lines
2.3 KiB
JSON
{
|
|
"name": "streetmerchant",
|
|
"description": "🔮 For all your Nvidia needs",
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"all": "npm run build && npm run lint",
|
|
"build": "tsc",
|
|
"lint": "xo",
|
|
"lint:fix": "xo --fix",
|
|
"start": "npm run build && node build/index.js",
|
|
"start:dev": "nodemon --config nodemon.json",
|
|
"start:production": "node build/index.js",
|
|
"test:notification": "npm run build && node build/__test__/notification-test.js",
|
|
"test:notification:production": "node build/__test__/notification-test.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jef/streetmerchant.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "jef",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/jef/streetmerchant/issues"
|
|
},
|
|
"homepage": "https://github.com/jef/streetmerchant#readme",
|
|
"dependencies": {
|
|
"@jef/pushbullet": "^2.4.3",
|
|
"@slack/web-api": "^5.14.0",
|
|
"chalk": "^4.1.0",
|
|
"cheerio": "^1.0.0-rc.3",
|
|
"discord.js": "^12.5.1",
|
|
"dotenv": "^8.2.0",
|
|
"messaging-api-telegram": "^1.0.1",
|
|
"mqtt": "^4.2.6",
|
|
"node-fetch": "^2.6.1",
|
|
"node-hue-api": "^4.0.9",
|
|
"node-notifier": "^8.0.0",
|
|
"node-pagerduty": "^1.3.6",
|
|
"nodemailer": "^6.4.16",
|
|
"open": "^7.3.0",
|
|
"play-sound": "^1.1.3",
|
|
"puppeteer": "^5.5.0",
|
|
"puppeteer-extra": "^3.1.15",
|
|
"puppeteer-extra-plugin-adblocker": "^2.11.9",
|
|
"puppeteer-extra-plugin-block-resources": "^2.2.7",
|
|
"puppeteer-extra-plugin-stealth": "^2.6.5",
|
|
"puppeteer-page-proxy": "^1.2.8",
|
|
"pushover-notifications": "^1.2.2",
|
|
"twilio": "^3.53.0",
|
|
"twitch": "^4.3.5",
|
|
"twitch-auth": "^4.3.5",
|
|
"twitch-chat-client": "^4.3.5",
|
|
"twitter": "^1.7.1",
|
|
"winston": "^3.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/async": "^3.2.5",
|
|
"@types/cheerio": "^0.22.23",
|
|
"@types/node": "^14.14.10",
|
|
"@types/node-fetch": "^2.5.7",
|
|
"@types/node-notifier": "^8.0.0",
|
|
"@types/nodemailer": "^6.4.0",
|
|
"@types/puppeteer": "^5.4.1",
|
|
"@types/twitter": "^1.7.0",
|
|
"nodemon": "^2.0.6",
|
|
"ts-node": "^9.1.1",
|
|
"typescript": "^4.1.2",
|
|
"webpack": "^5.10.0",
|
|
"xo": "^0.36.1"
|
|
},
|
|
"xo": {
|
|
"prettier": true,
|
|
"rules": {
|
|
"no-warning-comments": "off",
|
|
"sort-imports": "error",
|
|
"sort-keys": "error",
|
|
"sort-vars": "error"
|
|
}
|
|
}
|
|
}
|