-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.07 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
{
"name": "gitgram",
"version": "1.0.0",
"description": "Github notifications for Telegram",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev:start": "node --experimental-loader @esbuild-kit/esm-loader --env-file .env src/index.ts",
"dev": "nodemon -e ts --watch src --exec \"npm run dev:start\"",
"build": "tsc && tsc-alias",
"test:unit": "vitest run",
"test:coverage": "vitest run --coverage",
"test:tdd": "vitest",
"test": "npm run test:tdd",
"lint:fix": "eslint --fix --ext .js,.ts .",
"lint:check": "eslint --ext .js,.ts .",
"prepare": "node ./prepare.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teknologi-umum/gitgram.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/teknologi-umum/gitgram/issues"
},
"homepage": "https://github.com/teknologi-umum/gitgram#readme",
"devDependencies": {
"@esbuild-kit/esm-loader": "^2.6.5",
"@teknologi-umum/eslint-config-typescript": "^0.0.10",
"@types/eventsource": "^1.1.15",
"@types/node": "^20.11.19",
"@types/node-fetch": "^2.6.11",
"@types/sanitize-html": "^2.11.0",
"@vitest/coverage-v8": "^1.3.0",
"esbuild": "^0.20.0",
"esbuild-register": "^3.5.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^8.0.3",
"nodemon": "^3.0.3",
"tsc-alias": "^1.8.8",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^5.1.7",
"vitest": "^1.3.0"
},
"dependencies": {
"@hono/node-server": "^1.10.1",
"@octokit/webhooks-types": "^7.3.2",
"@sentry/node": "^7.101.1",
"cheerio": "1.0.0-rc.12",
"colorette": "^2.0.20",
"eventsource": "^2.0.2",
"grammy": "^1.21.1",
"gura": "^1.4.4",
"hono": "^4.0.3",
"remark-gfm": "^4.0.0",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"rxjs": "^7.8.1",
"sanitize-html": "^2.12.1",
"templite": "^1.2.0",
"unified": "^11.0.4",
"zod": "^3.22.4"
},
"engineStrict": true,
"engines": {
"node": ">=20.11.0",
"npm": ">=10"
}
}