This repository has been archived by the owner on Mar 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.69 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
93
94
95
96
97
98
{
"name": "@rangelfinal/boilerplate",
"version": "2.1.86",
"main": "index.js",
"license": "MIT",
"description": "An opinionated typescript boilerplate",
"packageManager": "[email protected]",
"author": "Vitor Rangel <[email protected]>",
"engines": {
"node": ">16"
},
"keywords": [
"boilerplate",
"typescript"
],
"config": {
"commitizen": {
"path": "commitiquette"
}
},
"mikro-orm": {
"useTsNode": true,
"configPaths": [
"./src/mikro-orm.config.ts",
"./dist/mikro-orm.config.js"
]
},
"scripts": {
"prepare": "husky install",
"build": "tsc",
"start": "node dist/main.js",
"commit": "cz",
"test": "mocha 'src/**/*spec.ts'",
"test:cov": "nyc mocha 'src/**/*spec.ts'",
"release": "standard-version",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"format": "prettier --write \"{src,test}/**/*.ts\""
},
"dependencies": {
"@mikro-orm/core": "^4.5.10",
"@mikro-orm/nestjs": "^4.3.1",
"@mikro-orm/postgresql": "^4.5.10",
"@mikro-orm/reflection": "^4.5.10",
"@nestjs/common": "^8.2.6",
"@nestjs/config": "^1.1.6",
"@nestjs/core": "^8.2.6",
"@nestjs/platform-fastify": "^8.2.6",
"@nestjs/swagger": "^5.2.0",
"fastify": "^3.27.1",
"fastify-helmet": "^7.0.1",
"fastify-swagger": "^4.13.1",
"joi": "^17.6.0",
"nestjs-pino": "^2.5.0",
"pino": "^7.6.5",
"pino-http": "^6.6.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "15.0.0",
"@commitlint/config-conventional": "15.0.0",
"@commitlint/load": "15.0.0",
"@commitlint/types": "15.0.0",
"@mikro-orm/cli": "4.5.10",
"@mikro-orm/migrations": "4.5.10",
"@nestjs/cli": "8.2.8",
"@types/chai": "4.3.4",
"@types/mocha": "9.0.0",
"@types/node": "16.11.68",
"@types/uuid": "8.3.4",
"@types/validator": "13.7.14",
"@types/yargs": "17.0.22",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"chai": "4.3.7",
"commitiquette": "1.2.1",
"commitizen": "4.2.6",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.31.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "16.2.0",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-node": "0.3.7",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-promise": "5.2.0",
"husky": "7.0.4",
"lint-staged": "12.1.7",
"mocha": "9.1.4",
"nyc": "15.1.0",
"prettier": "2.8.4",
"standard-version": "9.3.2",
"ts-lib": "0.0.5",
"ts-node": "10.4.0",
"typescript": "4.5.5"
}
}