forked from msanvarov/nest-rest-typeorm-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.67 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
{
"name": "nest-rest-typeorm-boilerplate",
"version": "0.0.1",
"description": "nest typeorm boilerplate",
"author": "msanvarov",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"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",
"start:prod": "node dist/main.js",
"typedocs": "npx compodoc -p tsconfig.json -s -d docs",
"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 --detectOpenHandles --forceExit"
},
"dependencies": {
"@hapi/joi": "17.1.1",
"@nestjs/common": "7.5.5",
"@nestjs/core": "7.5.5",
"@nestjs/jwt": "7.2.0",
"@nestjs/passport": "7.1.5",
"@nestjs/platform-express": "7.5.5",
"@nestjs/platform-fastify": "7.5.5",
"@nestjs/swagger": "4.7.5",
"@nestjs/typeorm": "7.1.5",
"class-transformer": "0.3.1",
"class-validator": "0.12.2",
"crypto": "1.0.1",
"dotenv": "8.2.0",
"express-rate-limit": "5.2.3",
"fastify-helmet": "5.0.3",
"fastify-rate-limit": "4.0.3",
"fastify-swagger": "3.5.0",
"gravatar": "1.8.1",
"helmet": "4.2.0",
"mysql": "2.18.1",
"nest-access-control": "2.0.2",
"passport": "0.4.1",
"passport-jwt": "4.0.0",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rxjs": "6.6.3",
"swagger-ui-express": "4.1.5",
"typeorm": "0.2.29",
"winston": "3.3.3",
"winston-daily-rotate-file": "4.5.0"
},
"devDependencies": {
"@compodoc/compodoc": "1.1.11",
"@nestjs/testing": "7.5.5",
"@types/dotenv": "8.2.0",
"@types/express": "4.17.9",
"@types/gravatar": "1.8.1",
"@types/hapi__joi": "17.1.6",
"@types/jest": "26.0.16",
"@types/node": "13.13.5",
"@types/passport-jwt": "3.0.3",
"@types/supertest": "2.0.10",
"chai": "4.2.0",
"jest": "26.6.3",
"nodemon": "2.0.6",
"prettier": "2.2.1",
"supertest": "6.0.1",
"ts-jest": "26.4.4",
"ts-loader": "8.0.11",
"ts-node": "9.0.0",
"tsc-watch": "4.2.9",
"tsconfig-paths": "3.9.0",
"tslint": "6.1.3",
"typescript": "4.1.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}