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] 7f59fa44f0
build(deps-dev): bump tsc-watch from 6.0.4 to 7.1.1
Bumps [tsc-watch](https://github.com/gilamran/tsc-watch) from 6.0.4 to 7.1.1.
- [Release notes](https://github.com/gilamran/tsc-watch/releases)
- [Changelog](https://github.com/gilamran/tsc-watch/blob/master/CHANGELOG.md)
- [Commits](https://github.com/gilamran/tsc-watch/commits)

---
updated-dependencies:
- dependency-name: tsc-watch
  dependency-version: 7.1.1
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-06-01 15:26:45 +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": "^8.8.0",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-toolbelt": "^9.6.0",
"tsc-watch": "^7.1.1",
"typescript": "^5.8.3"
},
"workspaces": [
"shared",
"backend",
"dashboard"
]
}