-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.39 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
112
{
"name": "laruno-backend-api-v1",
"version": "1.0.0",
"description": "API Development",
"author": "Laruno-Dev",
"private": true,
"license": "(MIT OR Apache-2.0)",
"scripts": {
"prebuild": "rimraf dist",
"build": "export NODE_OPTIONS=--max_old_space_size=8192 && nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "export NODE_OPTIONS=--max_old_space_size=8192 && nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"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"
},
"dependencies": {
"@nestjs/common": "^7.6.12",
"@nestjs/core": "^7.5.4",
"@nestjs/jwt": "^7.2.0",
"@nestjs/mongoose": "^7.2.4",
"@nestjs/passport": "^7.1.3",
"@nestjs/platform-express": "^7.5.4",
"@nestjs/platform-ws": "^7.5.4",
"@nestjs/schedule": "^0.4.1",
"@nestjs/serve-static": "^2.2.2",
"@nestjs/swagger": "^4.7.5",
"@nestjs/websockets": "^7.5.4",
"@types/mailgun-js": "^0.22.11",
"@types/uuid": "^8.3.0",
"aws-sdk": "^2.820.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"connect-mongodb-session": "^2.4.1",
"cookie-parser": "^1.4.5",
"crypto": "^1.0.1",
"cryptr": "^6.0.2",
"dotenv": "^8.2.0",
"express-session": "^1.17.1",
"fastify-swagger": "^3.4.0",
"gravatar": "^1.8.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mailgun-js": "^0.22.0",
"moment": "^2.29.1",
"mongoose": "^5.12.10",
"mongoose-slug-updater": "^3.2.3",
"normalize-url": "^5.3.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"rxjs": "^6.6.3",
"source-map-support": "^0.5.19",
"swagger-ui-express": "^4.1.5",
"xendit-node": "^1.4.0"
},
"devDependencies": {
"@nestjs/cli": "^7.5.3",
"@nestjs/schematics": "^7.2.2",
"@nestjs/testing": "^7.5.4",
"@types/cookie-parser": "^1.4.2",
"@types/cron": "^1.7.2",
"@types/express": "^4.17.9",
"@types/express-session": "^1.17.3",
"@types/jest": "26.0.10",
"@types/mongoose": "^5.11.97",
"@types/node": "^13.13.32",
"@types/passport": "^1.0.4",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "3.9.1",
"@typescript-eslint/parser": "3.9.1",
"eslint": "7.7.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"jest": "26.4.2",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "26.2.0",
"ts-loader": "^6.2.1",
"ts-node": "9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.7.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}