generated from korniychuk/wallaby-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 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
{
"name": "@z-brain/api-entity-ref",
"description": "Decorators to copy swagger & class-validator metadata from one class to another",
"author": "Anton Korniychuk <dev@korniychuk.pro>",
"license": "GPL-3.0",
"private": false,
"version": "1.2.3",
"bugs": {
"url": "https://github.com/z-brain/api-entity-ref/issues"
},
"homepage": "https://github.com/z-brain/api-entity-ref",
"repository": {
"type": "git",
"url": "git@github.com:z-brain/api-entity-ref.git"
},
"engines": {
"node": "^16.4.2",
"yarn": "^1.22.1"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"build:prod": "yarn run build",
"build:local": "yarn run build && yarn run gen-public-package.json && cp README.md dist/ && tools/install-me-from.sh",
"lint": "eslint --ext .js,.ts src/**",
"lint:fix": "yarn run lint --fix",
"preinstall": "node ./tools/check-yarn.js",
"test": "jest -c jest.config.js",
"test:cov": "yarn run test --coverage",
"test:watch": "yarn run test --watch",
"tpl-repo": "tools/merge-with-repository-template.sh",
"tpl-repo:check": "yarn run tpl-repo check",
"tpl-repo:merge": "yarn run tpl-repo merge",
"gen-public-package.json": "tools/gen-public-package.js",
"prepare": "husky install",
"pre-push": "yarn run lint && yarn run test && yarn run build:prod && yarn run tpl-repo:check",
"ci": "yarn run lint && yarn run test:cov && yarn run build:prod"
},
"dependencies": {
"lodash": ">=4.17.0",
"reflect-metadata": "^0.1.13"
},
"peerDependencies": {
"@nestjs/swagger": "^5.1.0",
"class-transformer": "~0.4.0",
"class-validator": "~0.13.1",
"typescript": ">=4.4.0"
},
"devDependencies": {
"@nestjs/common": "~8.0.9",
"@nestjs/core": "~8.0.9",
"@nestjs/platform-express": "~8.0.9",
"@nestjs/swagger": "~5.1.0",
"@nestjs/testing": "~8.0.9",
"@types/jest": "~27.0.2",
"@types/lodash": "~4.14.175",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "~4.32.0",
"@typescript-eslint/parser": "~4.32.0",
"class-transformer": "~0.4.0",
"class-validator": "~0.13.1",
"eslint": "~7.32.0",
"eslint-config-airbnb-base": "~14.2.1",
"eslint-import-resolver-typescript": "~2.5.0",
"eslint-plugin-filenames": "~1.3.2",
"eslint-plugin-import": "~2.24.2",
"eslint-plugin-promise": "~5.1.0",
"eslint-plugin-unicorn": "~36.0.0",
"husky": "~7.0.2",
"jest": "~27.2.4",
"jest-extended": "~0.11.5",
"rimraf": "~3.0.2",
"rxjs": "~7.3.0",
"ts-jest": "~27.0.5",
"typescript": "~4.4.3"
}
}