mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-29 18:59:20 +01:00
Co-authored-by: homarr-renovate[bot] <158783068+homarr-renovate[bot]@users.noreply.github.com>
42 lines
1.3 KiB
JSON
42 lines
1.3 KiB
JSON
{
|
|
"name": "@homarr/websocket",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"main": "./src/main.ts",
|
|
"types": "./src/main.ts",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "pnpm with-env tsx ./src/main.ts",
|
|
"build": "esbuild src/main.ts --bundle --platform=node --outfile=wssServer.cjs --external:bcrypt --loader:.html=text --loader:.node=text",
|
|
"clean": "rm -rf .turbo node_modules",
|
|
"lint": "eslint",
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
|
"typecheck": "tsc --noEmit",
|
|
"with-env": "dotenv -e ../../.env --"
|
|
},
|
|
"dependencies": {
|
|
"@homarr/api": "workspace:^0.1.0",
|
|
"@homarr/auth": "workspace:^0.1.0",
|
|
"@homarr/common": "workspace:^0.1.0",
|
|
"@homarr/db": "workspace:^0.1.0",
|
|
"@homarr/definitions": "workspace:^0.1.0",
|
|
"@homarr/log": "workspace:^",
|
|
"@homarr/redis": "workspace:^0.1.0",
|
|
"@homarr/validation": "workspace:^0.1.0",
|
|
"tsx": "4.13.3",
|
|
"ws": "^8.17.0",
|
|
"dotenv": "^16.4.5"
|
|
},
|
|
"devDependencies": {
|
|
"@homarr/eslint-config": "workspace:^0.2.0",
|
|
"@homarr/prettier-config": "workspace:^0.1.0",
|
|
"@homarr/tsconfig": "workspace:^0.1.0",
|
|
"@types/ws": "^8.5.10",
|
|
"eslint": "^9.4.0",
|
|
"prettier": "^3.3.2",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"prettier": "@homarr/prettier-config"
|
|
}
|