-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.49 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
{
"name": "dmhy-notifier",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/kin021360/dmhy-notifier"
},
"author": "Nathan Lam",
"license": "MIT",
"dependencies": {
"@elastic/ecs-pino-format": "1.4.0",
"level-ttl": "3.1.1",
"leveldown": "6.1.1",
"levelup": "5.1.1",
"module-alias": "2.2.3",
"moment-timezone": "0.5.43",
"node-telegram-bot-api": "0.65.1",
"pino": "8.8.0",
"pino-elasticsearch": "6.3.0",
"pino-pretty": "9.1.1",
"rss-parser": "3.13.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.2.1",
"@types/level-ttl": "3.1.4",
"@types/leveldown": "4.0.5",
"@types/levelup": "5.1.4",
"@types/node": "16",
"@types/node-telegram-bot-api": "0.64.6",
"@typescript-eslint/eslint-plugin": "8.0.1",
"@typescript-eslint/parser": "8.0.1",
"eslint": "8.57.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-tsdoc": "0.2.17",
"prettier": "2.8.8",
"shx": "0.3.4",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "4.9.5"
},
"scripts": {
"ichk": "yarn install --check-files",
"start": "node --expose-gc ./dist/index.js",
"dev": "node -r ts-node/register -r tsconfig-paths/register src/index.ts",
"prebuild": "shx rm -rf dist",
"build": "tsc",
"format": "prettier --write src/** && yarn lint --fix",
"lint": "eslint ./src/ --ext .js,.jsx,.ts,.tsx"
},
"_moduleAliases": {
"src": "./dist"
}
}