This repository has been archived by the owner on Sep 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.57 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
{
"author": {
"email": "[email protected]",
"name": "TrejGun",
"url": "https://gemunion.io/"
},
"dependencies": {
"@nestjs/common": "10.4.3",
"@nestjs/core": "10.4.3",
"@nestjs/platform-express": "10.4.3",
"@nestjs/swagger": "7.4.2",
"@nestjs/typeorm": "10.0.2",
"chalk": "4.1.2",
"class-transformer": "0.5.1",
"class-validator": "0.14.1",
"dotenv": "16.4.5",
"express": "4.21.0",
"express-session": "1.18.0",
"nest-winston": "1.10.0",
"pg": "8.13.0",
"rxjs": "7.8.1",
"typeorm": "0.3.20",
"typeorm-naming-strategies": "4.1.0",
"winston": "3.14.2",
"winston-papertrail-transport": "1.0.9"
},
"description": "logger for nest.js",
"devDependencies": {
"@nestjs/testing": "10.4.3",
"@gemunion/eslint-config": "4.0.6",
"@types/express": "4.17.21",
"@types/express-session": "1.18.0",
"@types/jest": "29.5.13",
"@types/node": "20.16.5",
"@typescript-eslint/eslint-plugin": "8.6.0",
"@typescript-eslint/parser": "8.6.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "6.6.0",
"husky": "4.3.8",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tsc-watch": "6.2.0",
"typescript": "5.6.2"
},
"license": "MIT",
"main": "./dist/index.js",
"name": "logger-for-nest-js",
"repository": {
"type": "git",
"url": "https://github.com/TrejGun/logger-for-nest-js"
},
"scripts": {
"build": "tsc",
"entity:create": "npm run typeorm -- entity:create -n",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --fix",
"migration:create": "npm run typeorm migration:create -- -n",
"migration:generate": "npm run typeorm migration:generate -- -n",
"migration:revert": "npm run typeorm migration:revert",
"migration:run": "npm run typeorm migration:run",
"prebuild": "rm -rf dist/",
"prod": "NODE_ENV=production node .",
"start": "NODE_ENV=development tsc-watch --onSuccess \"node .\" --onFailure \"echo Compilation Failed\"",
"test": "NODE_ENV=test jest --config jest.config.json --detectOpenHandles",
"typeorm": "NODE_ENV=development ts-node ./node_modules/.bin/typeorm --config src/ormconfig.ts"
},
"title": "Logger for Nest.js",
"version": "0.0.1"
}