You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
3.4 KiB
117 lines
3.4 KiB
{ |
|
"name": "api-taskme", |
|
"version": "0.0.1", |
|
"description": "", |
|
"author": "", |
|
"private": true, |
|
"license": "UNLICENSED", |
|
"scripts": { |
|
"prebuild": "rimraf dist", |
|
"build": "nest build", |
|
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", |
|
"start": "pm2-runtime start ecosystem.config.js", |
|
"start:stage": "pm2-runtime start ecosystem.config.prod.js", |
|
"build:dev": " nest build --watch", |
|
"start:debug": "nest start --debug --watch", |
|
"start:prod": "pm2 start ./dist/main.js --node-args='--max-old-space-size=6144'", |
|
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", |
|
"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", |
|
"docs": "npx @compodoc/compodoc -p tsconfig.json -s --theme laravel --hideGenerator --name TaskMe --customLogo ./logo.png", |
|
"prepare": "husky install", |
|
"push:dev": "cd ./deploy && sh dev.sh " |
|
}, |
|
"dependencies": { |
|
"@nestjs-modules/mailer": "^1.6.0", |
|
"@nestjs/axios": "^1.0.1", |
|
"@nestjs/common": "^8.4.4", |
|
"@nestjs/core": "^8.4.4", |
|
"@nestjs/event-emitter": "^1.0.0", |
|
"@nestjs/platform-express": "^8.4.4", |
|
"@nestjs/platform-socket.io": "^8.4.4", |
|
"@nestjs/schedule": "^1.0.1", |
|
"@nestjs/swagger": "^5.2.1", |
|
"@nestjs/throttler": "^4.1.0", |
|
"@nestjs/typeorm": "^8.0.1", |
|
"@nestjs/websockets": "^8.4.4", |
|
"aes256": "^1.1.0", |
|
"awesome-phonenumber": "^2.55.0", |
|
"axios": "^0.27.2", |
|
"class-transformer": "^0.4.0", |
|
"class-validator": "^0.13.1", |
|
"dotenv": "^10.0.0", |
|
"express-basic-auth": "^1.2.0", |
|
"http": "0.0.1-security", |
|
"https": "^1.0.0", |
|
"imgproxy": "^1.0.0", |
|
"ioredis": "^4.27.7", |
|
"jsonwebtoken": "^8.5.1", |
|
"lodash": "^4.17.21", |
|
"minio": "^7.0.19", |
|
"moment": "^2.29.1", |
|
"nestjs-real-ip": "^2.2.0", |
|
"nodemailer": "^6.7.0", |
|
"pg": "^8.7.1", |
|
"randomstring": "^1.2.1", |
|
"react-native-draggable-flatlist": "^3.0.7", |
|
"reflect-metadata": "^0.1.13", |
|
"rimraf": "^3.0.2", |
|
"rxjs": "^7.3.0", |
|
"secure-compare": "^3.0.1", |
|
"socket.io-redis": "^5.2.0", |
|
"swagger-ui-express": "^4.1.6", |
|
"typeorm": "^0.2.36" |
|
}, |
|
"devDependencies": { |
|
"@compodoc/compodoc": "^1.1.19", |
|
"@nestjs/cli": "^7.0.0", |
|
"@nestjs/schematics": "^7.0.0", |
|
"@nestjs/testing": "^8.4.4", |
|
"@types/express": "^4.17.3", |
|
"@types/ioredis": "^4.27.8", |
|
"@types/jest": "26.0.10", |
|
"@types/lodash": "^4.14.172", |
|
"@types/minio": "^7.0.9", |
|
"@types/multer": "^1.4.7", |
|
"@types/node": "14.18.2", |
|
"@types/nodemailer": "^6.4.4", |
|
"@types/superagent": "4.1.10", |
|
"@types/supertest": "^2.0.11", |
|
"@typescript-eslint/eslint-plugin": "3.9.1", |
|
"@typescript-eslint/parser": "3.9.1", |
|
"env-cmd": "^10.1.0", |
|
"eslint": "7.7.0", |
|
"eslint-config-prettier": "^6.10.0", |
|
"eslint-plugin-import": "^2.20.1", |
|
"husky": "^7.0.2", |
|
"jest": "^27.0.0", |
|
"prettier": "^2.6.2", |
|
"pretty-quick": "^3.1.1", |
|
"supertest": "^4.0.2", |
|
"ts-jest": "^27.1.4", |
|
"ts-loader": "^6.2.1", |
|
"ts-node": "9.0.0", |
|
"tsconfig-paths": "^3.9.0", |
|
"typescript": "^4.5.5" |
|
}, |
|
"jest": { |
|
"moduleFileExtensions": [ |
|
"js", |
|
"json", |
|
"ts" |
|
], |
|
"rootDir": "src", |
|
"testRegex": ".spec.ts$", |
|
"transform": { |
|
"^.+\\.(t|j)s$": "ts-jest" |
|
}, |
|
"coverageDirectory": "../coverage", |
|
"testEnvironment": "node", |
|
"moduleNameMapper": { |
|
"src/(.*)": "<rootDir>/$1" |
|
} |
|
} |
|
}
|
|
|