-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.1 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.1 KB
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
{
"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 && pnpm run start-bot-prod",
"start-api": "cd backend && pnpm 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": "^3.5.3",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-toolbelt": "^9.6.0",
"tsc-watch": "^6.0.4",
"typescript": "=5.9.3"
},
"dependencies": {
"dotenv": "^16.5.0"
},
"engines": {
"node": ">=24"
}
}