2018-07-01 03:35:51 +03:00
|
|
|
{
|
2024-01-27 12:45:52 +02:00
|
|
|
"name": "@zeppelinbot/zeppelin",
|
2018-07-01 03:35:51 +03:00
|
|
|
"version": "0.0.1",
|
2024-10-28 15:52:21 +00:00
|
|
|
"description": "ZappyZep source",
|
2018-12-14 06:32:17 +02:00
|
|
|
"private": true,
|
2018-07-01 03:35:51 +03:00
|
|
|
"scripts": {
|
2023-12-27 18:30:08 +00:00
|
|
|
"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}\"",
|
2024-03-17 18:49:31 +02:00
|
|
|
"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"
|
2018-07-07 14:27:54 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-11-02 16:45:41 +02:00
|
|
|
"@eslint/eslintrc": "^3.1.0",
|
|
|
|
"@eslint/js": "^9.14.0",
|
2024-11-02 16:39:00 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8.12.2",
|
|
|
|
"@typescript-eslint/parser": "^8.12.2",
|
|
|
|
"eslint": "^9.14.0",
|
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2024-11-02 16:45:41 +02:00
|
|
|
"globals": "^15.0.0",
|
2019-11-02 22:16:43 +02:00
|
|
|
"husky": "^3.0.9",
|
|
|
|
"lint-staged": "^9.4.2",
|
2023-04-01 12:58:17 +01:00
|
|
|
"prettier": "^2.8.4",
|
|
|
|
"prettier-plugin-organize-imports": "^3.2.2",
|
2024-11-02 14:55:56 +02:00
|
|
|
"run-node": "^2.0.0",
|
2024-01-14 14:25:42 +00:00
|
|
|
"ts-toolbelt": "^9.6.0",
|
2023-04-29 21:07:18 +03:00
|
|
|
"tsc-watch": "^6.0.4",
|
|
|
|
"typescript": "^5.0.4"
|
2019-04-14 13:37:29 +03:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-commit": "lint-staged"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*.ts": [
|
2023-05-08 21:53:09 +03:00
|
|
|
"eslint",
|
2019-04-14 13:37:29 +03:00
|
|
|
"prettier --write",
|
|
|
|
"git add"
|
|
|
|
]
|
2024-03-02 09:24:07 +00:00
|
|
|
},
|
|
|
|
"workspaces": [
|
|
|
|
"shared",
|
|
|
|
"backend",
|
|
|
|
"dashboard"
|
2024-11-02 15:06:12 +02:00
|
|
|
],
|
|
|
|
"dependencies": {
|
|
|
|
"typeorm": "^0.3.20"
|
|
|
|
}
|
2018-07-01 03:35:51 +03:00
|
|
|
}
|