forked from devonfw/devon4ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.7 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.7 KB
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
{
"name": "@devon4node/devon4node",
"workspaces": [
"packages/cli",
"packages/common",
"packages/mailer",
"packages/schematics",
"packages/config"
],
"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",
"format": "lerna run format"
},
"dependencies": {
"@angular-devkit/core": "^10.0.5",
"@angular-devkit/schematics": "^10.0.5",
"@angular-devkit/schematics-cli": "^0.1000.5",
"@nestjs/cli": "^7.0.2",
"@nestjs/schematics": "^7.0.0",
"@schematics/angular": "^10.0.5",
"chalk": "^4.0.0",
"fs-extra": "^9.0.0",
"inquirer": "^7.3.3",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"node-fetch": "^2.6.0",
"nodemailer": "^6.4.11",
"pluralize": "^8.0.0",
"prettier": "^2.0.0",
"rxjs": "^6.5.4",
"tmp-promise": "^3.0.2",
"ts-morph": "^7.0.0",
"typeorm": "^0.2.24",
"typescript": "^3.9.7",
"yargs": "^15.1.0",
"@nestjs/passport": "^7.0.0",
"@nestjs/jwt": "^7.0.0",
"passport-jwt": "^4.0.0",
"bcrypt": "^5.0.0",
"passport": "^0.4.1"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@nestjs/common": "^7.4.4",
"@nestjs/core": "^7.4.4",
"@nestjs/platform-express": "^7.4.4",
"@nestjs/testing": "^7.4.4",
"@types/inquirer": "^7.3.1",
"@types/jasmine": "^3.5.14",
"@types/jest": "^26.0.13",
"@types/js-yaml": "^3.12.2",
"@types/lodash": "^4.14.149",
"@types/node": "^14.10.1",
"@types/node-fetch": "^2.5.5",
"@types/nodemailer": "^6.4.0",
"@types/pluralize": "^0.0.29",
"@types/prettier": "^2.1.0",
"@types/supertest": "^2.0.8",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"class-transformer": "^0.3.1",
"class-validator": "^0.12.0-rc.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "3.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"handlebars": "^4.7.3",
"husky": "^4.3.0",
"jasmine": "^3.5.0",
"jest": "^25.2.3",
"lerna": "^3.20.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.4",
"ts-jest": "^25.2.1",
"@types/passport-jwt": "^3.0.3",
"@types/bcrypt": "^3.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lerna run lint"
}
}
}