-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.82 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
{
"name": "molecule-app-backend",
"version": "1.0.0",
"description": "",
"author": "",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"start": "node dist/main.js",
"start:dev": "nodemon",
"start:debug": "nodemon -L --config nodemon-debug.json",
"prestart:prod": "rimraf dist && npm run build",
"start:prod": "ts-node -r tsconfig-paths/register src/main.ts",
"lint": "tslint -p tsconfig.json -c tslint.json",
"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": {
"@lkaric/twilio-nestjs": "^0.0.1",
"@nestjs/bull": "^0.3.1",
"@nestjs/common": "^7.4.4",
"@nestjs/core": "^7.4.4",
"@nestjs/jwt": "^7.1.0",
"@nestjs/mongoose": "^7.0.2",
"@nestjs/passport": "^7.1.0",
"@nestjs/platform-express": "^7.4.4",
"@nestjs/swagger": "^4.6.0",
"@types/bull": "^3.15.0",
"@types/node": "^14.11.1",
"aws-sdk": "^2.787.0",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"bull": "^3.20.0",
"cache-manager": "^3.4.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"cryptr": "^6.0.2",
"date-fns": "^2.16.1",
"dotenv": "^8.0.0",
"google-auth-library": "^7.11.0",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"mongoose": "^5.10.6",
"nestjs-config": "^1.4.8",
"nestjs-pino": "^1.4.0",
"nestjs-redis": "^1.2.8",
"nodemailer": "^6.4.11",
"otp-generator": "^2.0.0",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"reflect-metadata": "^0.1.12",
"request-ip": "^2.1.3",
"rimraf": "^3.0.2",
"rxjs": "^6.3.3",
"swagger-ui-express": "^4.1.2",
"uuid": "^8.3.2",
"validator": "^13.1.17",
"web-push": "^3.4.4",
"xlsx": "^0.16.6"
},
"devDependencies": {
"@nestjs/testing": "^7.4.4",
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.16.0",
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.161",
"@types/mongoose": "^5.5.8",
"@types/nodemailer": "^6.4.0",
"@types/supertest": "^2.0.7",
"@types/validator": "^13.1.0",
"@types/web-push": "^3.3.0",
"jest": "^26.4.2",
"nodemon": "^2.0.7",
"prettier": "^2.1.2",
"supertest": "^4.0.2",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.7.0",
"tslint": "6.1.3",
"typescript": "^4.0.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}