|
| 1 | +{ |
| 2 | + "name": "reactus-with-nest", |
| 3 | + "version": "1.0.0", |
| 4 | + "private": true, |
| 5 | + "license": "UNLICENSED", |
| 6 | + "type": "module", |
| 7 | + "scripts": { |
| 8 | + "build": "tsx scripts/build.ts", |
| 9 | + "start": "nest start", |
| 10 | + "start:dev": "nest start --watch", |
| 11 | + "start:debug": "nest start --debug --watch", |
| 12 | + "start:prod": "NODE_ENV=production nest start --prod", |
| 13 | + "test": "jest --config jest.config.mjs", |
| 14 | + "test:watch": "jest --watch", |
| 15 | + "test:cov": "jest --coverage", |
| 16 | + "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", |
| 17 | + "test:e2e": "jest --config ./test/jest-e2e.json" |
| 18 | + }, |
| 19 | + "dependencies": { |
| 20 | + "@nestjs/common": "^11.0.1", |
| 21 | + "@nestjs/core": "^11.0.1", |
| 22 | + "@nestjs/platform-express": "^11.0.1", |
| 23 | + "react": "^19.1.0", |
| 24 | + "react-dom": "^19.1.0", |
| 25 | + "reactus": "^0.2.10", |
| 26 | + "reflect-metadata": "^0.2.2", |
| 27 | + "rxjs": "^7.8.1" |
| 28 | + }, |
| 29 | + "devDependencies": { |
| 30 | + "@nestjs/cli": "^11.0.0", |
| 31 | + "@nestjs/schematics": "^11.0.0", |
| 32 | + "@nestjs/testing": "^11.0.1", |
| 33 | + "@swc/cli": "^0.6.0", |
| 34 | + "@swc/core": "^1.10.7", |
| 35 | + "@types/express": "^5.0.0", |
| 36 | + "@types/jest": "^29.5.14", |
| 37 | + "@types/node": "^22.15.3", |
| 38 | + "@types/react": "^19.1.2", |
| 39 | + "@types/react-dom": "^19.1.3", |
| 40 | + "@types/supertest": "^6.0.2", |
| 41 | + "@vitejs/plugin-react": "^4.4.1", |
| 42 | + "globals": "^16.0.0", |
| 43 | + "jest": "^29.7.0", |
| 44 | + "source-map-support": "^0.5.21", |
| 45 | + "supertest": "^7.0.0", |
| 46 | + "ts-jest": "^29.2.5", |
| 47 | + "ts-loader": "^9.5.2", |
| 48 | + "ts-node": "^10.9.2", |
| 49 | + "tsconfig-paths": "^4.2.0", |
| 50 | + "tsx": "^4.19.4", |
| 51 | + "typescript": "^5.8.3", |
| 52 | + "vite": "^6.3.4" |
| 53 | + }, |
| 54 | + "jest": { |
| 55 | + "moduleFileExtensions": [ |
| 56 | + "js", |
| 57 | + "json", |
| 58 | + "ts" |
| 59 | + ], |
| 60 | + "rootDir": "src", |
| 61 | + "testRegex": ".*\\.spec\\.ts$", |
| 62 | + "transform": { |
| 63 | + "^.+\\.(t|j)s$": "ts-jest" |
| 64 | + }, |
| 65 | + "collectCoverageFrom": [ |
| 66 | + "**/*.(t|j)s" |
| 67 | + ], |
| 68 | + "coverageDirectory": "../coverage", |
| 69 | + "testEnvironment": "node" |
| 70 | + } |
| 71 | +} |
0 commit comments