|
| 1 | +{ |
| 2 | + "name": "skill-assessment-service", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "Skill assessment service for evaluating player abilities and placing them in appropriate difficulty tiers", |
| 5 | + "author": "", |
| 6 | + "private": true, |
| 7 | + "license": "UNLICENSED", |
| 8 | + "scripts": { |
| 9 | + "build": "nest build", |
| 10 | + "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", |
| 11 | + "format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"", |
| 12 | + "start": "nest start", |
| 13 | + "start:dev": "nest start --watch", |
| 14 | + "start:debug": "nest start --debug --watch", |
| 15 | + "start:prod": "node dist/main", |
| 16 | + "lint": "eslint \"{src,test}/**/*.ts\" --fix", |
| 17 | + "lint:check": "eslint \"{src,test}/**/*.ts\"", |
| 18 | + "type-check": "tsc --noEmit", |
| 19 | + "test": "jest", |
| 20 | + "test:watch": "jest --watch", |
| 21 | + "test:cov": "jest --coverage", |
| 22 | + "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", |
| 23 | + "migration:generate": "ts-node ./node_modules/typeorm/cli -d ormconfig.ts migration:generate", |
| 24 | + "migration:run": "ts-node ./node_modules/typeorm/cli -d ormconfig.ts migration:run", |
| 25 | + "migration:revert": "ts-node ./node_modules/typeorm/cli -d ormconfig.ts migration:revert" |
| 26 | + }, |
| 27 | + "dependencies": { |
| 28 | + "@nestjs/common": "^10.4.4", |
| 29 | + "@nestjs/config": "^3.3.0", |
| 30 | + "@nestjs/core": "^10.4.4", |
| 31 | + "@nestjs/platform-express": "^10.4.4", |
| 32 | + "@nestjs/schedule": "^4.1.1", |
| 33 | + "@nestjs/swagger": "^7.4.0", |
| 34 | + "@nestjs/typeorm": "^11.0.0", |
| 35 | + "@quest-service/shared": "file:../shared", |
| 36 | + "class-transformer": "^0.5.1", |
| 37 | + "class-validator": "^0.14.1", |
| 38 | + "dotenv": "^17.2.3", |
| 39 | + "pg": "^8.17.2", |
| 40 | + "reflect-metadata": "^0.2.2", |
| 41 | + "rxjs": "^7.8.1", |
| 42 | + "typeorm": "^0.3.28" |
| 43 | + }, |
| 44 | + "devDependencies": { |
| 45 | + "@eslint/js": "^9.10.0", |
| 46 | + "@nestjs/cli": "^10.4.5", |
| 47 | + "@nestjs/schematics": "^10.1.4", |
| 48 | + "@nestjs/testing": "^10.4.4", |
| 49 | + "@types/express": "^4.17.21", |
| 50 | + "@types/jest": "^29.5.12", |
| 51 | + "@types/node": "^20.14.15", |
| 52 | + "@types/supertest": "^6.0.2", |
| 53 | + "@typescript-eslint/eslint-plugin": "^8.0.0", |
| 54 | + "@typescript-eslint/parser": "^8.0.0", |
| 55 | + "eslint": "^9.10.0", |
| 56 | + "eslint-config-prettier": "^9.1.0", |
| 57 | + "eslint-plugin-prettier": "^5.2.1", |
| 58 | + "globals": "^15.9.0", |
| 59 | + "jest": "^29.7.0", |
| 60 | + "prettier": "^3.3.3", |
| 61 | + "source-map-support": "^0.5.21", |
| 62 | + "supertest": "^7.1.3", |
| 63 | + "ts-jest": "^29.2.4", |
| 64 | + "ts-loader": "^9.5.1", |
| 65 | + "ts-node": "^10.9.2", |
| 66 | + "tsconfig-paths": "^4.2.0", |
| 67 | + "typescript": "^5.5.4", |
| 68 | + "typescript-eslint": "^8.0.0" |
| 69 | + }, |
| 70 | + "jest": { |
| 71 | + "moduleFileExtensions": [ |
| 72 | + "js", |
| 73 | + "json", |
| 74 | + "ts" |
| 75 | + ], |
| 76 | + "rootDir": "src", |
| 77 | + "testRegex": ".*\\.spec\\.ts$", |
| 78 | + "transform": { |
| 79 | + "^.+\\.(t|j)s$": "ts-jest" |
| 80 | + }, |
| 81 | + "collectCoverageFrom": [ |
| 82 | + "**/*.(t|j)s" |
| 83 | + ], |
| 84 | + "coverageDirectory": "../coverage", |
| 85 | + "testEnvironment": "node" |
| 86 | + }, |
| 87 | + "engines": { |
| 88 | + "node": ">=18.0.0" |
| 89 | + } |
| 90 | +} |
0 commit comments