-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.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
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
{
"license": "MIT",
"scripts": {
"build": "tsc",
"build:ts": "tsc",
"dev": "npm run dev:watch",
"dev:watch": "NODE_ENV=development tsx watch src/server.ts",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"prepare": "husky install",
"start": "tsx src/server.ts",
"start:prod": "NODE_ENV=production TS_NODE_BASEURL=./dist node -r tsconfig-paths/register ./dist/src/server.js",
"typecheck": "tsc -b"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,css,md}": "prettier --write"
},
"dependencies": {
"@fastify/autoload": "5.10.0",
"@fastify/cors": "8.5.0",
"@fastify/env": "4.4.0",
"@fastify/etag": "4.2.0",
"@fastify/helmet": "11.1.1",
"@fastify/multipart": "7.7.3",
"@fastify/one-line-logger": "1.4.0",
"@fastify/rate-limit": "8.1.1",
"@fastify/sensible": "5.6.0",
"@innei/next-async": "0.3.0",
"@mx-space/api-client": "1.16.1",
"@mx-space/webhook": "0.5.0",
"@tanstack/query-core": "4.36.1",
"axios": "1.7.9",
"chalk": "4.1.2",
"close-with-grace": "1.3.0",
"consola": "2.15.3",
"cron": "2.4.4",
"dayjs": "1.11.13",
"dotenv": "16.4.7",
"fastify": "4.29.0",
"fastify-cli": "5.9.0",
"fastify-plugin": "4.5.1",
"fastify-tsconfig": "1.0.1",
"git-webhook-handler": "link:packages/git-webhook-handler",
"husky": "8.0.3",
"lodash": "4.17.21",
"marked": "5.1.2",
"randomcolor": "0.6.2",
"remove-markdown": "0.5.5",
"socket.io-client": "4.8.1",
"telegraf": "4.16.3",
"tsconfig-paths": "4.2.0",
"zod": "3.23.8"
},
"devDependencies": {
"@innei/eslint-config-ts": "0.15.0",
"@innei/prettier": "0.15.0",
"@types/cron": "2.4.3",
"@types/lodash": "4.17.13",
"@types/marked": "5.0.2",
"@types/node": "20.17.9",
"@types/node-telegram-bot-api": "0.64.7",
"@types/randomcolor": "0.5.9",
"@types/remove-markdown": "0.3.4",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"fast-json-stringify": "5.16.1",
"lint-staged": "13.3.0",
"prettier": "3.4.2",
"ts-node": "10.9.2",
"tsx": "3.14.0",
"typescript": "5.7.2"
},
"engines": {
"node": ">=16.20.0"
},
"tsup": {
"entry": [
"src/**/*.ts"
],
"splitting": false,
"sourcemap": true,
"clean": true,
"format": [
"cjs",
"esm"
],
"legacyOutput": true,
"target": "es2018"
},
"packageManager": "[email protected]"
}