-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
87 lines (87 loc) · 2.47 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
{
"name": "nestjs-auth-jwt",
"version": "0.2.0",
"description": "NestJS authentication sample, that uses JWT, short lived access tokens, and sliding refresh tokens",
"author": "Abdou BOUROUBI",
"license": "MIT",
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "nodemon",
"start:debug": "nodemon --config nodemon-debug.json",
"prestart:prod": "rimraf dist && tsc",
"start:prod": "node dist/main.js",
"start:hmr": "node dist/server",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json",
"webpack": "webpack --config webpack.config.js"
},
"dependencies": {
"@nestjs/common": "^9.2.1",
"@nestjs/core": "^6.3.1",
"@nestjs/jwt": "^6.1.1",
"@nestjs/mongoose": "^6.1.2",
"@nestjs/passport": "^6.1.0",
"@nestjs/swagger": "^3.0.2",
"automapper-ts": "^1.9.0",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.3.1",
"class-validator": "^0.9.1",
"dotenv": "^8.0.0",
"helmet": "^3.18.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"mongoose": "^5.13.20",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.2",
"typegoose": "^5.7.1",
"typescript": "^3.5.1"
},
"devDependencies": {
"@nestjs/testing": "^6.3.1",
"@types/bcryptjs": "^2.4.2",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.0",
"@types/jest": "^24.0.14",
"@types/jsonwebtoken": "^8.3.2",
"@types/lodash": "^4.14.134",
"@types/mongoose": "^5.5.6",
"@types/node": "^12.0.8",
"@types/passport": "^1.0.0",
"@types/passport-jwt": "^3.0.1",
"@types/supertest": "^2.0.7",
"jest": "^29.7.0",
"nodemon": "^2.0.20",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.2",
"ts-node": "^8.2.0",
"tsconfig-paths": "^3.8.0",
"tslint": "5.17.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^1.7.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}