-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.48 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
{
"name": "nodejs-openapi-ui",
"type": "module",
"private": true,
"description": "A middleware collection for using the OpenAPI-UI with NodeJS",
"author": "rookie-luochao",
"license": "MIT",
"scripts": {
"build": "pnpm --filter './packages/**' run build",
"changeset": "changeset",
"version": "changeset version",
"publish": "changeset publish",
"test": "vitest",
"prepare": "husky"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
]
]
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --quiet"
],
"*.(ts|tsx|json|html)": [
"prettier --write"
]
},
"prettier": {
"trailingComma": "all",
"arrowParens": "always",
"printWidth": 120
}
}