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.

118 lines
3.4 KiB

3 years ago
{
3 years ago
"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",
3 years ago
"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'",
3 years ago
"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",
3 years ago
"prepare": "husky install",
"push:dev": "cd ./deploy && sh dev.sh "
3 years ago
},
"dependencies": {
"@nestjs-modules/mailer": "^1.6.0",
"@nestjs/axios": "^1.0.1",
"@nestjs/common": "^8.4.4",
"@nestjs/core": "^8.4.4",
3 years ago
"@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",
1 year ago
"@nestjs/throttler": "^4.1.0",
3 years ago
"@nestjs/typeorm": "^8.0.1",
"@nestjs/websockets": "^8.4.4",
3 years ago
"aes256": "^1.1.0",
"awesome-phonenumber": "^2.55.0",
"axios": "^0.27.2",
3 years ago
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"dotenv": "^10.0.0",
"express-basic-auth": "^1.2.0",
2 years ago
"http": "0.0.1-security",
"https": "^1.0.0",
"imgproxy": "^1.0.0",
3 years ago
"ioredis": "^4.27.7",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
3 years ago
"minio": "^7.0.19",
"moment": "^2.29.1",
2 years ago
"nestjs-real-ip": "^2.2.0",
"nodemailer": "^6.7.0",
3 years ago
"pg": "^8.7.1",
"randomstring": "^1.2.1",
"react-native-draggable-flatlist": "^3.0.7",
3 years ago
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.3.0",
"secure-compare": "^3.0.1",
"socket.io-redis": "^5.2.0",
3 years ago
"swagger-ui-express": "^4.1.6",
"typeorm": "^0.2.36"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.19",
3 years ago
"@nestjs/cli": "^7.0.0",
"@nestjs/schematics": "^7.0.0",
"@nestjs/testing": "^8.4.4",
3 years ago
"@types/express": "^4.17.3",
"@types/ioredis": "^4.27.8",
3 years ago
"@types/jest": "26.0.10",
"@types/lodash": "^4.14.172",
3 years ago
"@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",
3 years ago
"@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",
3 years ago
"pretty-quick": "^3.1.1",
"supertest": "^4.0.2",
"ts-jest": "^27.1.4",
3 years ago
"ts-loader": "^6.2.1",
"ts-node": "9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.5.5"
3 years ago
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"moduleNameMapper": {
"src/(.*)": "<rootDir>/$1"
}
3 years ago
}
3 years ago
}