-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.5 KB
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
{
"name": "gtlogin-api",
"version": "0.0.1",
"description": "Geddeontech SL Login Service API",
"author": "Melvin Sequera Iriarte",
"license": "MIT",
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nodemon",
"prestart:prod": "rm -rf dist && tsc",
"start:prod": "node dist/main.js",
"start:hmr": "node dist/server",
"test": "jest",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json",
"webpack": "webpack --config webpack.config.js",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"@nest-modules/mailer": "^1.3.22",
"@nestjs/common": "^7.4.2",
"@nestjs/core": "^7.4.2",
"@nestjs/mongoose": "^7.0.2",
"@nestjs/passport": "^7.1.0",
"@nestjs/swagger": "^4.5.12",
"@nestjs/typeorm": "^7.1.0",
"ajv": "^6.12.3",
"arraylist": "^0.1.0",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"compression": "^1.7.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fastify-formbody": "^4.0.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"moment": "^2.27.0",
"mongodb": "^3.6.0",
"mongoose": "^5.9.28",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth": "^2.0.0",
"passport-http-bearer": "^1.0.1",
"passport-jwt": "^4.0.0",
"passport-oauth2": "^1.5.0",
"passport-twitter": "^1.0.4",
"postgresql": "0.0.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.2",
"typeorm": "^0.2.25",
"typescript": "^3.9.7",
"validator": "^13.1.1",
"snyk": "^1.370.1"
},
"devDependencies": {
"@nestjs/testing": "^7.4.2",
"@types/express": "^4.17.7",
"@types/jest": "^26.0.9",
"@types/lodash": "^4.14.159",
"@types/node": "^14.0.27",
"@types/supertest": "^2.0.10",
"jest": "^26.2.2",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"supertest": "^4.0.2",
"ts-jest": "^26.1.4",
"ts-loader": "^8.0.2",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"tslint": "6.1.3",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage"
},
"snyk": true
}