-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.82 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
{
"name": "vod-hub",
"version": "0.1.0",
"keywords": [
"电影", "视频", "电视剧", "综艺", "动漫"
],
"type": "module",
"scripts": {
"dev": "tsx watch --clear-screen=false src/index.ts",
"start": "tsx src/index.ts",
"prepare": "husky",
"commit": "git-cz"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"@hono/zod-openapi": "^0.18.3",
"axios": "^1.7.9",
"cache-manager": "^6.3.2",
"cacheable": "^1.8.7",
"cheerio": "^1.0.0",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.13",
"directory-import": "^3.3.2",
"hono": "^4.6.17",
"ioredis": "^5.4.2",
"keyv": "^5.2.3",
"lodash": "^4.17.21",
"query-string": "^9.1.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.26.5",
"@babel/eslint-plugin": "^7.25.7",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@ecomfe/eslint-config": "^8.0.0",
"@types/crypto-js": "^4.2.2",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.7",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "8",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.1",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}