-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·48 lines (48 loc) · 1.4 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
{
"name": "nest-api-auth-jwt",
"version": "1.0.0",
"description": "Nest project with : JWT, PM2, Docker, e2e test",
"license": "MIT",
"scripts": {
"start": "pm2-dev start index.js",
"prestart:prod": "tsc",
"start:prod": "pm2-docker dist/server.js",
"lint": "tslint \"src/**/*.ts\" --project ./tsconfig.json",
"test": "jest --config=jest.json",
"test:watch": "jest --watch --config=jest.json",
"test:coverage":
"jest --config=jest.json --coverage --coverageDirectory=coverage",
"e2e": "jest --config=e2e/jest-e2e.json --forceExit",
"e2e:watch": "jest --watch --config=e2e/jest-e2e.json"
},
"dependencies": {
"@nestjs/common": "^4.5.6",
"@nestjs/core": "^4.5.7",
"@nestjs/microservices": "^4.5.7",
"@nestjs/swagger": "^1.1.3",
"@nestjs/testing": "^4.5.5",
"@nestjs/websockets": "^4.5.7",
"bcrypt": "^1.0.3",
"cors": "^2.8.4",
"helmet": "^3.9.0",
"jsonwebtoken": "^8.0.1",
"mongoose": "^4.13.9",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-jwt": "^3.0.0",
"pm2": "^2.9.1",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.5.6",
"typescript": "^2.6.2"
},
"devDependencies": {
"@types/jest": "^22.0.1",
"@types/node": "^9.3.0",
"@types/passport-jwt": "^3.0.0",
"jest": "^22.0.6",
"supertest": "^3.0.0",
"ts-jest": "^22.0.1",
"ts-node": "^4.1.0",
"tslint": "^5.9.1"
}
}