-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 3.43 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "mediumclone-nestjs",
"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": "nest start",
"start:prod": "node dist/main",
"start:dev": "nest start --watch",
"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 nodeodules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"typeorm:cli": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli -f src/config/typeorm.config-migrations.ts",
"migration:generate": "npm run typeorm:cli -- migration:generate -d src/database/migrations -n",
"migration:drop": "npm run typeorm:cli -- schema:drop",
"migration:create": "npm run typeorm:cli -- migration:create -d src/database/migrations -n",
"migration:run": "npm run typeorm:cli -- migration:run",
"migration:revert": "npm run typeorm:cli -- migration:revert"
},
"dependencies": {
"@nestjs/common": "^7.5.1",
"@nestjs/config": "^2.0.0",
"@nestjs/core": "^7.5.1",
"@nestjs/event-emitter": "^1.1.1",
"@nestjs/platform-express": "^7.5.1",
"@nestjs/schedule": "^2.0.1",
"@nestjs/serve-static": "^2.2.2",
"@nestjs/typeorm": "^7.1.5",
"app-root-path": "^3.0.0",
"async": "^3.2.4",
"bcrypt": "^5.0.1",
"buffer-to-stream": "^1.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"cloudinary": "^1.30.0",
"cross-env": "^7.0.3",
"date-fns": "^2.28.0",
"firebase": "^9.8.3",
"firebase-admin": "^11.0.0",
"fs-extra": "^10.1.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"module-alias": "^2.2.2",
"moment": "^2.29.3",
"nestjs-form-data": "^1.6.3",
"nodemon": "^2.0.7",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^6.6.3",
"sharp": "^0.30.6",
"slugify": "^1.6.5",
"typeorm": "^0.2.32",
"uuid": "^8.3.2"
},
"devDependencies": {
"@nestjs/cli": "^7.5.1",
"@nestjs/schematics": "^7.1.3",
"@nestjs/swagger": "^4.8.2",
"@nestjs/testing": "^7.5.1",
"@types/app-root-path": "^1.2.4",
"@types/cron": "^2.0.0",
"@types/express": "^4.17.8",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.182",
"@types/multer": "^1.4.7",
"@types/node": "^14.14.6",
"@types/sharp": "^0.30.2",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"supertest": "^6.0.0",
"swagger-ui-express": "^4.4.0",
"ts-jest": "^26.4.3",
"ts-loader": "^8.0.8",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}