-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1003 Bytes
/
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
{
"name": "langchain4j-quarkus",
"version": "1.0.0",
"description": "",
"keywords": [],
"license": "Apache-2.0",
"author": "",
"scripts": {
"format": "prettier --write .",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@prettier/plugin-xml": "^3.4.1",
"cz-conventional-changelog": "^3.3.0",
"git-precommit-checks": "^3.1.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"prettier-plugin-java": "^2.6.0",
"prettier-plugin-packagejson": "^2.5.0",
"prettier-plugin-sh": "^0.14.0",
"prettier-plugin-sql": "^0.18.1",
"validate-branch-name": "^1.3.0"
}
}