3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-07-06 02:27:19 +00:00
zeppelin/package.json
dependabot[bot] b37abf2b98
build(deps-dev): bump eslint-config-prettier from 8.8.0 to 10.1.5
Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 8.8.0 to 10.1.5.
- [Release notes](https://github.com/prettier/eslint-config-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/eslint-config-prettier/compare/v8.8.0...v10.1.5)

---
updated-dependencies:
- dependency-name: eslint-config-prettier
  dependency-version: 10.1.5
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-06-01 15:26:54 +00:00

31 lines
1.1 KiB
JSON

{
"name": "@zeppelinbot/zeppelin",
"version": "0.0.1",
"description": "",
"private": true,
"scripts": {
"format": "prettier --write \"./backend/src/**/*.{css,html,js,json,ts,tsx}\" \"./dashboard/src/**/*.{css,html,js,json,ts,tsx}\"",
"lint": "eslint \"./backend/src/**/*.{js,ts,tsx}\" \"./dashboard/src/**/*.{js,ts,tsx}\"",
"codestyle-check": "prettier --check \"./backend/src/**/*.{css,html,js,json,ts,tsx}\" \"./dashboard/src/**/*.{css,html,js,json,ts,tsx}\"",
"start-bot": "cd backend && npm run start-bot-prod",
"start-api": "cd backend && npm run start-api-prod",
"start-dashboard": "cd dashboard && node serve.js"
},
"devDependencies": {
"@types/node": "^22.15.18",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^10.1.5",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-toolbelt": "^9.6.0",
"tsc-watch": "^6.0.4",
"typescript": "^5.8.3"
},
"workspaces": [
"shared",
"backend",
"dashboard"
]
}