gitlab_monitor/package.json
zhaoyingbo a4555ac862
All checks were successful
CI Monitor CI/CD / build-image (push) Successful in 29s
CI Monitor CI/CD / deploy (push) Successful in 30s
feat: 接入eslint
2024-07-24 10:56:26 +00:00

28 lines
631 B
JSON

{
"name": "ci_monitor",
"module": "index.ts",
"type": "module",
"scripts": {
"start": "bun run index.ts",
"lint": "eslint --fix ."
},
"devDependencies": {
"@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",
"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"
}
}