-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.81 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
{
"name": "price-tg-notifier",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:ruslansavenok/price-tg-notifier.git",
"author": "Ruslan Savenok <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "nodemon src/index.ts",
"dev-api": "nodemon src/ui-api.ts",
"prod": "NODE_ENV=production ts-node src/index.ts --transpile-only",
"prod-api": "NODE_ENV=production ts-node src/ui-api.ts --transpile-only",
"eslint": "eslint . --ext .ts"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && yarn eslint"
}
},
"dependencies": {
"@grammyjs/runner": "^1.0.2",
"@grammyjs/transformer-throttler": "^1.0.1",
"@sentry/node": "^6.16.1",
"@sentry/tracing": "^6.16.1",
"axios": "^0.24.0",
"cheerio": "^1.0.0-rc.10",
"cookie": "^0.4.1",
"datadog-metrics": "^0.9.3",
"date-fns": "^2.25.0",
"dotenv": "^10.0.0",
"fastify": "^4.15.0",
"@fastify/cors": "^8.2.1",
"grammy": "^1.3.4",
"iconv": "^3.0.1",
"lodash": "^4.17.21",
"minimist": "^1.2.5",
"mongoose": "6.0.12",
"qs": "^6.10.1",
"table": "^6.7.3",
"telegraf-middleware-console-time": "^2.1.0",
"ts-node": "10.9.1",
"typescript": "^4.7.4",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@grammyjs/types": "^2.3.1",
"@types/cookie": "^0.4.1",
"@types/datadog-metrics": "^0.6.2",
"@types/iconv": "^3.0.0",
"@types/lodash": "^4.14.178",
"@types/minimist": "^1.2.2",
"@types/node": "^16.11.6",
"@types/qs": "^6.9.7",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"husky": "^7.0.4",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1"
}
}