mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-30 03:09:19 +01:00
59 lines
1.6 KiB
JSON
59 lines
1.6 KiB
JSON
{
|
|
"name": "@homarr/nest",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev": "pnpm with-env vite",
|
|
"prebuild": "rimraf dist",
|
|
"build": "vite build",
|
|
"start": "nest start",
|
|
"start:dev": "nest start --watch",
|
|
"start:debug": "nest start --debug --watch",
|
|
"start:prod": "node dist/main",
|
|
"clean": "rm -rf .turbo node_modules",
|
|
"lint": "eslint .",
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
|
"typecheck": "tsc --noEmit",
|
|
"with-env": "dotenv -e ../../.env --"
|
|
},
|
|
"dependencies": {
|
|
"@homarr/db": "workspace:^0.1.0",
|
|
"@homarr/log": "workspace:^0.1.0",
|
|
"@nestjs/common": "^10.3.3",
|
|
"@nestjs/core": "^10.3.3",
|
|
"@nestjs/platform-express": "^10.3.3",
|
|
"nest-winston": "^1.9.4",
|
|
"reflect-metadata": "^0.1.13",
|
|
"rimraf": "^3.0.2",
|
|
"rxjs": "^7.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@homarr/eslint-config": "workspace:^0.2.0",
|
|
"@homarr/prettier-config": "workspace:^0.1.0",
|
|
"@homarr/tsconfig": "workspace:^0.1.0",
|
|
"@nestjs/cli": "^10.3.2",
|
|
"@nestjs/schematics": "^10.1.1",
|
|
"@nestjs/testing": "^10.3.3",
|
|
"@swc/core": "^1.2.155",
|
|
"@types/express": "^4.17.13",
|
|
"@types/node": "^20.11.24",
|
|
"@types/supertest": "^2.0.11",
|
|
"eslint": "^8.57.0",
|
|
"prettier": "^3.2.5",
|
|
"supertest": "^6.1.3",
|
|
"ts-node": "^10.0.0",
|
|
"tsconfig-paths": "^3.10.1",
|
|
"typescript": "^5.3.3",
|
|
"vite": "^4.0.4",
|
|
"vite-plugin-node": "^3.1.0"
|
|
},
|
|
"eslintConfig": {
|
|
"root": true,
|
|
"extends": [
|
|
"@homarr/eslint-config/base"
|
|
]
|
|
},
|
|
"prettier": "@homarr/prettier-config"
|
|
}
|