forked from nartc/mapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.56 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
{
"name": "automapper",
"version": "7.0.2",
"license": "MIT",
"scripts": {
"nx": "nx",
"affected:lint": "nx affected:lint --base=main",
"format:write": "nx format:write --base=main",
"commit": "cz",
"release": "dotenv release-it --",
"contributors:init": "all-contributors init",
"contributors:add": "all-contributors add",
"build:all": "nx run-many --all --target=build",
"test:all": "nx run-many --all --target=test --parallel",
"lint:all": "nx run-many --all --target=lint",
"publish:all": "nx run-many --target=publish --all --parallel"
},
"sideEffects": false,
"engines": {
"node": ">=10.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/nartc/mapper"
},
"author": {
"name": "Chau Tran",
"email": "[email protected]",
"url": "https://nartc.me"
},
"description": "AutoMapper TypeScript monorepo",
"keywords": [
"typescript",
"automapper",
"mapper",
"nx"
],
"dependencies": {},
"devDependencies": {
"@nestjs/common": "8.2.0",
"@nestjs/core": "8.2.0",
"@nestjs/platform-express": "8.2.0",
"@nestjs/schematics": "8.0.4",
"@nestjs/testing": "8.2.0",
"@nrwl/cli": "13.1.3",
"@nrwl/eslint-plugin-nx": "13.1.3",
"@nrwl/jest": "13.1.3",
"@nrwl/nest": "13.1.3",
"@nrwl/node": "13.1.3",
"@nrwl/tao": "13.1.3",
"@nrwl/workspace": "13.1.3",
"@release-it/bumper": "3.0.1",
"@release-it/conventional-changelog": "3.3.0",
"@types/jest": "27.0.2",
"@types/jest-when": "2.7.3",
"@types/node": "16.11.7",
"@types/sequelize": "4.28.10",
"@types/supertest": "2.0.11",
"@typescript-eslint/eslint-plugin": "5.3.1",
"@typescript-eslint/parser": "5.3.1",
"all-contributors-cli": "6.20.0",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"dotenv-cli": "4.1.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"husky": "7.0.4",
"jest": "27.3.1",
"jest-createspyobj": "2.0.0",
"jest-when": "3.4.2",
"lint-staged": "11.2.6",
"prettier": "2.4.1",
"reflect-metadata": "0.1.13",
"release-it": "14.11.6",
"rxjs": "~7.4.0",
"sequelize": "6.9.0",
"supertest": "6.1.6",
"ts-jest": "27.0.7",
"ts-node": "10.4.0",
"tslib": "2.3.1",
"typescript": "4.4.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,json,md,ts}": [
"npm run affected:lint",
"npm run format:write"
]
}
}