-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "notifications-bot",
"version": "2.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "npm run clean && tsc",
"changelog": "conventional-changelog -p angular -u",
"changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"clean": "rimraf dist",
"clean:all": "npm run clean && (rm -r ./node_modules || true)",
"cover": "nyc npm run test",
"dev": "ts-node index.js",
"cover:check": "nyc --check-coverage npm run test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint --ext .ts --fix src/**/*.ts test/**/*.ts",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"test": "mocha",
"upgrade": "npx npm-check -u",
"version": "npm run build && npm run changelog:update",
"start": "node index.js"
},
"devDependencies": {
"@types/async": "^3.2.16",
"@types/chai": "^4.1.6",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/express-session": "^1.17.6",
"@types/jsonwebtoken": "^9.0.1",
"@types/lodash": "^4.14.191",
"@types/mocha": "^9.1.1",
"@types/nconf": "^0.10.2",
"@types/node": "^16.4.13",
"@types/node-telegram-bot-api": "^0.57.1",
"@types/passport": "^1.0.12",
"@types/sharp": "^0.31.1",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"chai": "^4.1.2",
"conventional-changelog-cli": "^2.0.12",
"coveralls": "^3.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^8.2.0",
"mocha": "^9.0.0",
"nyc": "^15.0.0",
"source-map-support": "^0.5.12",
"ts-node": "^10.0.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@types/coingecko-api": "^1.0.10",
"@types/numeral": "^2.0.2",
"@types/passport-discord": "^0.1.6",
"@types/request-promise": "^4.1.48",
"@types/twit": "^2.2.30",
"axios": "^1.3.4",
"bignumber.js": "^9.1.1",
"bluebird": "^3.7.2",
"body-parser": "^1.20.2",
"coingecko-api": "^1.0.10",
"connect-ensure-login": "^0.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^2.29.3",
"discord-oauth2": "^2.11.0",
"discord-oauth2-api": "^1.1.2",
"discord.js": "^13.6.0",
"dotenv": "^16.0.1",
"ethers": "^6.6.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"http": "^0.0.1-security",
"image-comparer": "^1.1.3",
"image-diff": "^2.0.0",
"jimp": "^0.22.7",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"looks-same": "^8.1.0",
"moment": "^2.29.3",
"mongoose": "^6.8.2",
"mongoose-private-paths": "^0.7.0",
"mongoose-timestamp": "^0.6.0",
"nconf": "^0.12.0",
"node-cron": "^3.0.2",
"node-telegram-bot-api": "^0.58.0",
"nodemon": "^2.0.15",
"numeral": "^2.0.6",
"passport": "^0.6.0",
"passport-discord": "^0.1.4",
"request-promise": "^4.2.6",
"resemblejs": "^4.1.0",
"resize-image": "^0.1.0",
"sharp": "^0.31.3",
"sitka": "^1.0.5",
"twit": "^2.2.11",
"twitter-api-client": "^1.5.2",
"twitter-api-v2": "^1.12.0",
"twitter-lite": "^1.1.0",
"twitter-v2": "^1.1.0",
"underscore": "^1.13.2",
"web3": "^1.7.3",
"web3-eth-contract": "^1.8.1",
"web3-providers-ws": "^1.7.3"
}
}