{ "name": "epess-web-backend", "version": "0.0.1", "description": "", "author": "@tuankiet2s", "private": true, "license": "UNLICENSED", "scripts": { "build": "nest build", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", "start": "nest start", "start:dev": "nest start --watch", "start:debug": "nest start --debug --watch", "start:prod": "node dist/main", "prisma:generate": "npx prisma generate --schema=./epess-database/prisma/schema.prisma", "prisma:migrate": "npx prisma migrate dev --schema=./epess-database/prisma/schema.prisma", "prisma:push": "npx prisma db push --schema=./epess-database/prisma/schema.prisma", "prisma:reset": "npx prisma migrate reset --schema=./epess-database/prisma/schema.prisma", "prisma:seed": "npx prisma db seed --schema=./epess-database/prisma/schema.prisma", "prisma:format": "npx prisma format --schema=./epess-database/prisma/schema.prisma", "prisma:studio": "npx prisma studio --schema=./epess-database/prisma/schema.prisma", "biome:check": "biome check", "biome:fix": "biome fix --write", "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", "prettier": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", "test": "jest", "test:watch": "jest --watch", "test:cov": "jest --coverage", "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", "test:e2e": "jest --config ./test/jest-e2e.json", "codegen": "graphql-codegen --config codegen.ts" }, "dependencies": { "@apollo/server": "^4.11.0", "@clerk/express": "^1.2.2", "@graphql-codegen/introspection": "^4.0.3", "@graphql-codegen/typescript": "^4.0.9", "@graphql-codegen/typescript-operations": "^4.2.3", "@graphql-codegen/typescript-resolvers": "^4.2.1", "@nestjs-modules/mailer": "^2.0.2", "@nestjs/apollo": "^12.2.0", "@nestjs/common": "^10.0.0", "@nestjs/config": "^3.2.3", "@nestjs/core": "^10.0.0", "@nestjs/graphql": "^12.2.0", "@nestjs/jwt": "^10.2.0", "@nestjs/platform-express": "^10.0.0", "@nestjs/swagger": "^7.4.2", "@pothos/core": "^4.2.0", "@pothos/plugin-add-graphql": "^4.1.0", "@pothos/plugin-authz": "^3.5.10", "@pothos/plugin-errors": "^4.2.0", "@pothos/plugin-prisma": "^4.2.1", "@pothos/plugin-prisma-utils": "^1.2.0", "@pothos/plugin-relay": "^4.3.0", "@pothos/plugin-scope-auth": "^4.1.0", "@pothos/plugin-simple-objects": "^4.1.0", "@pothos/plugin-smart-subscriptions": "^4.1.0", "@prisma/client": "^5.21.1", "@smatch-corp/nestjs-pothos": "^0.3.0", "@smatch-corp/nestjs-pothos-apollo-driver": "^0.1.0", "apollo-server-express": "^3.13.0", "bcryptjs": "^2.4.3", "class-transformer": "^0.5.1", "class-validator": "^0.14.1", "epess-web-backend": "file:", "graphql": "^16.9.0", "graphql-scalars": "^1.23.0", "graphql-subscriptions": "^2.0.0", "graphql-tools": "^9.0.1", "graphql-upload": "15.0.2", "graphql-ws": "^5.16.0", "ioredis": "^5.4.1", "jsonwebtoken": "^9.0.2", "minio": "^8.0.1", "nestjs-minio": "^2.6.2", "nodemailer": "^6.9.15", "openai": "^4.68.4", "passport-jwt": "^4.0.1", "reflect-metadata": "^0.2.0", "rxjs": "^7.8.1", "swagger-ui-express": "^5.0.1", "type-graphql": "^2.0.0-rc.2" }, "devDependencies": { "@biomejs/biome": "1.9.4", "@clerk/types": "^4.23.0", "@eslint/eslintrc": "^3.1.0", "@eslint/js": "^9.12.0", "@faker-js/faker": "^9.0.3", "@graphql-codegen/cli": "^5.0.2", "@graphql-codegen/client-preset": "^4.4.0", "@graphql-codegen/typescript": "4.0.9", "@graphql-codegen/typescript-resolvers": "4.2.1", "@nestjs/cli": "^10.0.0", "@nestjs/schematics": "^10.0.0", "@nestjs/testing": "^10.0.0", "@stylistic/eslint-plugin-js": "^2.9.0", "@types/bcryptjs": "^2.4.6", "@types/express": "^4.17.17", "@types/jest": "^29.5.2", "@types/node": "^20.3.1", "@types/nodemailer": "^6.4.16", "@types/passport-jwt": "^4.0.1", "@types/supertest": "^6.0.0", "@types/ws": "^8.5.12", "@typescript-eslint/eslint-plugin": "^8.0.0", "@typescript-eslint/parser": "^8.0.0", "eslint": "9.11.1", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.0", "globals": "^15.10.0", "jest": "^29.5.0", "prettier": "^3.0.0", "prisma": "^5.21.1", "source-map-support": "^0.5.21", "supertest": "^7.0.0", "ts-jest": "^29.1.0", "ts-loader": "^9.4.3", "ts-node": "^10.9.1", "tsconfig-paths": "^4.2.0", "typescript": "^5.6.3", "ws": "^8.18.0" }, "jest": { "moduleFileExtensions": ["js", "json", "ts"], "rootDir": "src", "testRegex": ".*\\.spec\\.ts$", "transform": { "^.+\\.(t|j)s$": "ts-jest" }, "collectCoverageFrom": ["**/*.(t|j)s"], "coverageDirectory": "../coverage", "testEnvironment": "node" }, "prisma": { "seed": "node ../epess-database/prisma/seed.js" } }