-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
68 lines (68 loc) · 1.86 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
{
"name": "@devon4node/devon4node",
"workspaces": [
"packages/logform",
"packages/common",
"packages/config",
"packages/mailer",
"packages/schematics"
],
"private": true,
"license": "Apache-2.0",
"scripts": {
"cm": "git-cz",
"build": "lerna run build",
"prepublish": "npm run build",
"build:prod": "lerna run build:prod",
"lint": "lerna run lint",
"test": "lerna run test",
"format": "lerna run format",
"update-schematic-packages": "node scripts/update-schematics-packages.mjs",
"prepare": "husky install"
},
"dependencies": {
"@angular-devkit/schematics-cli": "^14.2.3",
"@nestjs/cli": "^9.1.3",
"lodash": "^4.17.21",
"prettier": "^2.7.1",
"typescript": "^4.8.3"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@nestjs/common": "^9.1.2",
"@nestjs/core": "^9.1.2",
"@nestjs/testing": "^9.1.2",
"@types/jest": "^29.0.3",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.185",
"@types/node": "^18.7.21",
"@types/nodemailer": "^6.4.6",
"@types/pluralize": "^0.0.33",
"@types/prettier": "^2.7.1",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"handlebars": "^4.7.7",
"husky": "^8.0.1",
"jest": "^29.0.3",
"lerna": "^5.5.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.7",
"ts-jest": "^29.0.2",
"typeorm": "^0.3.10",
"zx": "^7.0.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}