-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
143 lines (143 loc) · 3.63 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "nestjs-package-starter",
"version": "1.1.3",
"description": "NestJS npm package starter",
"author": {
"name": "Maximiliano \"Mex\" Delgado",
"email": "[email protected]",
"url": "https://rudemex.github.io/"
},
"directories": {
"lib": "lib",
"test": "__tests__"
},
"keywords": [
"nestjs",
"package",
"starter"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rudemex/nestjs-package-starter.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rudemex/nestjs-package-starter/issues"
},
"homepage": "https://github.com/rudemex/nestjs-package-starter#readme",
"scripts": {
"prebuild": "shx rm -rf pkg",
"build": "pika build",
"lint": "eslint \"{src,apps,libs,test,__test__}/**/*.ts\" --fix",
"pre-commit": "lint-staged",
"publish": "pika publish",
"release": "standard-version",
"test": "jest --runInBand --detectOpenHandles --coverage"
},
"peerDependencies": {
"@nestjs/common": "^8.2.0",
"@nestjs/core": "^8.2.0",
"@nestjs/platform-express": "^8.2.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.2"
},
"dependencies": {
"@nestjs/common": "^8.2.6",
"@nestjs/core": "^8.2.6",
"@nestjs/platform-express": "^8.2.6",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.2",
"shx": "^0.3.4"
},
"devDependencies": {
"@babel/core": "^7.16.10",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@babel/plugin-proposal-optional-chaining": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@nestjs/cli": "^8.2.0",
"@nestjs/schematics": "^8.0.4",
"@nestjs/testing": "^8.2.5",
"@pika/cli": "^0.2.0",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-types": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.19",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^4.3.0",
"jest": "^27.4.7",
"jest-extended": "^2.0.0",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^12.2.2",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"supertest": "^6.2.2",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5"
},
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"prettier": {
"semi": true,
"tabWidth": 2,
"singleQuote": true,
"printWidth": 100,
"trailingComma": "all"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged && jest"
}
},
"lint-staged": {
"*.{ts,json,md}": [
"prettier --write"
]
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg",
{
"exclude": [
"**/__test__/*"
]
}
],
[
"@pika/plugin-build-node",
{
"exclude": [
"**/__test__/*"
]
}
],
[
"@pika/plugin-build-types",
{
"exclude": [
"**/__test__/*"
]
}
]
]
}
}