forked from fengkx/NodeRSSBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.2 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.2 KB
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
{
"name": "node_rssbot",
"version": "0.11.0",
"description": "Another Telegram RSSBot in Node.js",
"main": "dist/source",
"engines": {
"node": "^14.13.1 || >=16.0.0",
"npm": ">=7"
},
"scripts": {
"build": "del-cli dist && tsc && node tools/copy-assets.mjs",
"start": "cross-env NODE_PRODUCTION=true node dist/source/index.js",
"start-withsnapshot": "cross-env NODE_PRODUCTION=true node --heapsnapshot-signal=SIGUSR2 dist/source/index.js",
"start-docker": "node --heapsnapshot-signal=SIGUSR2 dist/source/index.js",
"dev": "node $NODE_DEBUG_OPTIONS dist/source/index",
"test": "cross-env RSSBOT_DB_PATH=test/test-data/test.db RSSBOT_TOKEN=1 npx jest --verbose",
"pretty-quick": "pretty-quick --staged",
"format": "eslint \"source/**/*.{js,ts}\" --fix && prettier \"**/*.{js,ts,json,md}\" --write",
"lint": "eslint \"source/**/*.{js,ts}\" && prettier-check \"**/*.{js,ts,json,md}\" && npm run lint-lockfile",
"lint-lockfile": "npx lockfile-lint --path package-lock.json --allowed-hosts npm yarn github.com --allowed-schemes \"https:\" \"git+https:\""
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fengkx/NodeRSSBot.git"
},
"keywords": [
"Telegram"
],
"author": "fengkx",
"license": "MIT",
"bugs": {
"url": "https://github.com/fengkx/NodeRSSBot/issues"
},
"homepage": "https://github.com/fengkx/NodeRSSBot#readme",
"dependencies": {
"@cjsa/clean-stack": "^4.2.0",
"@cjsa/escape-goat": "^4.0.0-cjsa.0",
"@sentry/integrations": "^7.30.0",
"@sentry/node": "^7.31.1",
"@sentry/tracing": "^7.37.1",
"camaro": "^6.2.0",
"cross-env": "^7.0.3",
"disk-fastq": "^0.1.9",
"ejs": "^3.1.9",
"encoding": "^0.1.13",
"env-var": "^7.3.1",
"js-yaml": "^4.1.0",
"knex": "^2.4.2",
"make-fetch-happen": "^11.1.1",
"node-schedule": "^2.1.1",
"pg": "^8.10.0",
"socks-proxy-agent": "^7.0.0",
"sqlite3": "^5.1.6",
"telegraf": "^4.12.2",
"telegraf-throttler": "^0.6.0",
"tunnel": "0.0.6",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/create-test-server": "^3.0.1",
"@types/ejs": "^3.1.2",
"@types/jest": "^29.5.1",
"@types/js-yaml": "^4.0.5",
"@types/make-fetch-happen": "^10.0.1",
"@types/node-schedule": "^2.1.0",
"@types/tunnel": "^0.0.3",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.1",
"@vercel/nft": "^0.22.6",
"cp-file": "^9.1.0",
"cpy": "^10.0.0",
"create-test-server": "^3.0.1",
"del-cli": "^5.0.0",
"eslint": "^8.40.0",
"eslint-plugin-import": "^2.27.5",
"iconv-lite": "^0.6.3",
"jest": "^29.5.0",
"lockfile-lint": "^4.10.1",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8",
"prettier-check": "^2.0.0",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"jest": {
"preset": "ts-jest/presets/js-with-ts"
},
"overrides": {
"create-test-server": {
"create-cert": {
"pem": "git+https://git@github.com:Dexus/pem.git#71dae3346801dafb5a8bcebcd4c7267fd182666f"
}
}
}
}