-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
95 lines (94 loc) · 2.73 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
93
94
95
{
"name": "hoth",
"version": "1.0.0",
"description": "A Node.js framework based on fastify.",
"main": "index.js",
"repository": "https://github.com/searchfe/hoth.git",
"author": "cxtom <[email protected]>, kaivean <[email protected]>",
"license": "MIT",
"private": true,
"bin": {
"hoth": "dist/cli.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"lint-staged": "lint-staged",
"lint": "pnpm eslint",
"build:example": "pnpm --filter hoth-quickstart run build",
"build": "pnpm run -r build",
"dev": "nodemon",
"release": "pnpm -r --sequential run release",
"semantic-release": "lerna exec --concurrency 1 -- npx --no-install semantic-release",
"test": "SUPPRESS_STRICTNESS_CHECK=1 pnpm jest",
"clean": "pnpm -r exec rm -fr node_modules dist tsconfig.tsbuildinfo",
"prepare": "is-ci || husky install",
"link": "pnpm install",
"bootstrap": "pnpm install"
},
"lint-staged": {
"**/*.ts": [
"eslint"
]
},
"pre-commit": [
"lint-staged",
"commitlint"
],
"dependencies": {
"lint-staged": "^10.5.4",
"lodash": "^4.17.20",
"pino": "^9.6.0",
"sonic-boom": "^3.0.0",
"tslib": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/eslint-parser": "^7.26.8",
"@babel/eslint-plugin": "^7.25.9",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@ecomfe/eslint-config": "^7.0.0",
"@eslint/js": "^9.0.0",
"@searchfe/tsconfig": "^1.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.23",
"@types/node": "^20.17.19",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"esbuild-register": "^2.6.0",
"eslint": "^9.20.1",
"fastify": "^5.2.0",
"form-data": "^4.0.0",
"globals": "^14.0.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"jest-date-mock": "^1.0.8",
"jest-mock-console": "^1.1.0",
"jest-mock-process": "^1.4.1",
"lerna": "^8.2.0",
"nodemon": "^2.0.7",
"pre-commit": "^1.2.2",
"semantic-release": "^24.2.3",
"semantic-release-monorepo": "^8.0.2",
"source-map-support": "^0.5.19",
"ts-jest": "^29.2.5",
"ts-node": "^9.1.1",
"typescript": "~5.2.2"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
}
}