gitlab_monitor/package.json
zhaoyingbo 18a95387ee
All checks were successful
CI Monitor CI/CD / build-image (push) Successful in 33s
CI Monitor CI/CD / deploy (push) Successful in 37s
chore: 更新lint-staged和commitlint配置
2024-07-25 01:09:24 +00:00

42 lines
977 B
JSON

{
"name": "ci_monitor",
"module": "index.ts",
"type": "module",
"scripts": {
"start": "bun run index.ts",
"lint": "eslint --fix .",
"prepare": "husky",
"prettier": "prettier --write ."
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.7.0",
"@types/lodash": "^4.14.202",
"@types/node-schedule": "^2.1.6",
"bun-types": "latest",
"eslint": "9.x",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.8.0",
"husky": "^9.1.1",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"typescript-eslint": "^7.17.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"lodash": "^4.17.21",
"moment": "^2.30.1",
"node-schedule": "^2.1.1",
"pocketbase": "^0.21.1"
}
}