|
| 1 | +{ |
| 2 | + "name": "collaborative", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "", |
| 5 | + "author": "", |
| 6 | + "private": true, |
| 7 | + "license": "UNLICENSED", |
| 8 | + "scripts": { |
| 9 | + "build": "nest build", |
| 10 | + "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", |
| 11 | + "start": "nest start", |
| 12 | + "start:dev": "nest start --watch", |
| 13 | + "start:debug": "nest start --debug --watch", |
| 14 | + "start:prod": "node dist/collaborative/src/main.js", |
| 15 | + "test": "jest", |
| 16 | + "test:watch": "jest --watch", |
| 17 | + "test:cov": "jest --coverage", |
| 18 | + "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", |
| 19 | + "test:e2e": "jest --config ./test/jest-e2e.json" |
| 20 | + }, |
| 21 | + "dependencies": { |
| 22 | + "@elastic/elasticsearch": "^8.16.1", |
| 23 | + "@nestjs/cache-manager": "^2.3.0", |
| 24 | + "@nestjs/common": "^10.4.7", |
| 25 | + "@nestjs/config": "^3.3.0", |
| 26 | + "@nestjs/core": "^10.4.7", |
| 27 | + "@nestjs/elasticsearch": "^10.0.2", |
| 28 | + "@nestjs/mongoose": "^10.1.0", |
| 29 | + "@nestjs/platform-express": "^10.0.0", |
| 30 | + "@nestjs/platform-socket.io": "^10.4.8", |
| 31 | + "@nestjs/platform-ws": "^10.4.8", |
| 32 | + "@nestjs/schedule": "^4.1.1", |
| 33 | + "@nestjs/swagger": "^8.0.7", |
| 34 | + "@nestjs/terminus": "^10.2.3", |
| 35 | + "@nestjs/typeorm": "^10.0.2", |
| 36 | + "@nestjs/websockets": "^10.4.8", |
| 37 | + "dotenv": "^16.4.5", |
| 38 | + "mongoose": "^8.8.1", |
| 39 | + "mysql2": "^3.11.4", |
| 40 | + "nest-winston": "^1.9.7", |
| 41 | + "prosemirror": "^0.11.1", |
| 42 | + "reflect-metadata": "^0.2.2", |
| 43 | + "rxjs": "^7.8.1", |
| 44 | + "shared": "workspace:*", |
| 45 | + "socket.io": "^4.8.1", |
| 46 | + "swagger-ui-express": "^5.0.1", |
| 47 | + "typeorm": "^0.3.20", |
| 48 | + "utils": "link:@milkdown/kit/utils", |
| 49 | + "uuid": "^11.0.3", |
| 50 | + "winston": "^3.17.0", |
| 51 | + "winston-daily-rotate-file": "^5.0.0", |
| 52 | + "ws": "^8.18.0", |
| 53 | + "y-socket.io": "^1.1.3", |
| 54 | + "y-websocket": "^2.0.4", |
| 55 | + "yjs": "^13.6.20" |
| 56 | + }, |
| 57 | + "devDependencies": { |
| 58 | + "@nestjs/cli": "^10.0.0", |
| 59 | + "@nestjs/schematics": "^10.0.0", |
| 60 | + "@nestjs/testing": "^10.0.0", |
| 61 | + "@types/express": "^5.0.0", |
| 62 | + "@types/jest": "^29.5.2", |
| 63 | + "@types/mongoose": "^5.11.97", |
| 64 | + "@types/node": "^20.17.6", |
| 65 | + "@types/socket.io": "^3.0.2", |
| 66 | + "@types/supertest": "^6.0.0", |
| 67 | + "@types/uuid": "^10.0.0", |
| 68 | + "@types/ws": "^8.5.13", |
| 69 | + "jest": "^29.5.0", |
| 70 | + "prettier": "^3.0.0", |
| 71 | + "source-map-support": "^0.5.21", |
| 72 | + "supertest": "^7.0.0", |
| 73 | + "ts-jest": "^29.1.0", |
| 74 | + "ts-loader": "^9.4.3", |
| 75 | + "ts-node": "^10.9.2", |
| 76 | + "tsconfig-paths": "^4.2.0", |
| 77 | + "typescript": "^5.6.3" |
| 78 | + }, |
| 79 | + "jest": { |
| 80 | + "moduleFileExtensions": [ |
| 81 | + "js", |
| 82 | + "json", |
| 83 | + "ts" |
| 84 | + ], |
| 85 | + "rootDir": "src", |
| 86 | + "testRegex": ".*\\.spec\\.ts$", |
| 87 | + "transform": { |
| 88 | + "^.+\\.(t|j)s$": "ts-jest" |
| 89 | + }, |
| 90 | + "collectCoverageFrom": [ |
| 91 | + "**/*.(t|j)s" |
| 92 | + ], |
| 93 | + "coverageDirectory": "../coverage", |
| 94 | + "testEnvironment": "node" |
| 95 | + } |
| 96 | +} |
0 commit comments