- move NestJS app into server/ subdirectory - add client/ React+TypeScript (Vite) app with Hello World - update docker-compose to build and run both services - add root package.json declaring npm workspaces - update .gitignore to cover node_modules and dist at all depths
66 lines
1.8 KiB
JSON
66 lines
1.8 KiB
JSON
{
|
|
"name": "liquio-qa-bot",
|
|
"version": "1.2.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "nest build",
|
|
"start": "nest start",
|
|
"start:dev": "nest start --watch",
|
|
"start:prod": "node dist/main",
|
|
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"lint:fix": "eslint --fix \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"test": "jest",
|
|
"test:debug": "DEBUG=test jest",
|
|
"test:watch": "jest --watch"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
"@mozilla/readability": "^0.6.0",
|
|
"@nestjs/common": "^11.1.18",
|
|
"@nestjs/config": "^4.0.3",
|
|
"@nestjs/core": "^11.1.18",
|
|
"@nestjs/platform-express": "^11.1.18",
|
|
"@nestjs/schedule": "^6.1.1",
|
|
"@nestjs/swagger": "^11.2.6",
|
|
"@nestjs/typeorm": "^11.0.1",
|
|
"acorn": "^8.16.0",
|
|
"better-sqlite3": "^12.8.0",
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.4",
|
|
"jsdom": "^29.0.2",
|
|
"playwright": "^1.59.1",
|
|
"reflect-metadata": "^0.2.2",
|
|
"rxjs": "^7.8.2",
|
|
"swagger-ui-express": "^5.0.1",
|
|
"typeorm": "^0.3.28",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/cli": "^11.0.17",
|
|
"@nestjs/testing": "^11.1.18",
|
|
"@types/acorn": "^4.0.6",
|
|
"@types/better-sqlite3": "^7.6.13",
|
|
"@types/debug": "^4.1.13",
|
|
"@types/express": "^5.0.6",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/jsdom": "^28.0.1",
|
|
"@types/mozilla__readability": "^0.4.2",
|
|
"@types/node": "^25.5.2",
|
|
"@types/supertest": "^7.2.0",
|
|
"debug": "^4.4.3",
|
|
"eslint": "^10.2.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"jest": "^30.3.0",
|
|
"prettier": "^3.8.1",
|
|
"supertest": "^7.2.2",
|
|
"ts-jest": "^29.4.9",
|
|
"typescript": "^6.0.2",
|
|
"typescript-eslint": "^8.58.1"
|
|
}
|
|
}
|