-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.37 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.37 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
93
94
95
96
97
98
99
100
{
"name": "github-profile-psbadge",
"version": "1.1.0",
"description": "",
"author": "Cute_Wisp",
"private": true,
"license": "UNLICENSED",
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"yarn run eslint --fix"
],
"*.{md,json}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"prettier": "prettier --write \"src/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node -r ./tsconfig-paths-bootstrap.js dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest --passWithNoTests",
"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",
"release": "standard-version",
"release:major": "standard-version -- --release-as major",
"release:minor": "standard-version -- --release-as minor",
"release:patch": "standard-version -- --release-as patch",
"release:version": "standard-version -- --release-as"
},
"dependencies": {
"@babel/core": "^7.15.0",
"@nestjs/common": "^7.6.17",
"@nestjs/config": "^1.0.1",
"@nestjs/core": "^7.6.17",
"@nestjs/cqrs": "^7.0.1",
"@nestjs/platform-express": "^7.6.17",
"@nestjs/typeorm": "^7.1.5",
"body-parser": "^1.19.0",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"cls-rtracer": "^2.6.0",
"dotenv": "^10.0.0",
"express-rate-limit": "^5.2.6",
"helmet": "^4.6.0",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"nest-winston": "^1.5.0",
"node-eventstore-client": "^0.2.18",
"node-fetch": "^2.6.1",
"object-assign": "^4.1.1",
"pg": "^8.6.0",
"rimraf": "^3.0.2",
"rxjs": "^7.1.0",
"tsconfig-paths": "^3.10.1",
"typedi": "^0.10.0",
"typeorm": "^0.2.32",
"typeorm-transactional-cls-hooked": "^0.1.21",
"winston": "^3.3.3",
"winston-mongodb": "^5.0.7",
"@nestjs/cli": "^7.6.0",
"@nestjs/schematics": "^7.3.1",
"@nestjs/testing": "^7.6.17",
"ts-jest": "27.0.5",
"ts-loader": "^9.2.5",
"ts-node": "10.8.1",
"typescript": "^4.7.4"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/helmet": "^4.0.0",
"@types/jest": "26.0.24",
"@types/node": "^18.0.1",
"@types/xml2js": "^0.4.8",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-security": "^1.4.0",
"git-branch-is": "^4.0.0",
"husky": "^4.3.8",
"jest": "27.0.3",
"lint-staged": "^11.0.1",
"prettier": "^2.3.2",
"standard-version": "^9.3.1",
"supertest": "^6.1.3"
}
}