forked from jhipster/generator-jhipster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.75 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
{
"name": "generator-jhipster",
"version": "6.10.3",
"description": "Spring Boot + Angular/React in one handy generator",
"files": [
"cli",
"generators",
"jdl",
"utils"
],
"keywords": [
"yeoman-generator",
"Java",
"Spring",
"Spring Boot",
"Spring Security",
"JPA",
"Hibernate",
"React",
"Angular",
"Twitter Bootstrap",
"Webpack",
"Docker",
"JDL"
],
"homepage": "https://www.jhipster.tech/",
"bugs": "https://github.com/jhipster/generator-jhipster/issues",
"author": {
"name": "Julien Dubois",
"email": "",
"url": "https://github.com/jdubois"
},
"main": "cli/index.js",
"bin": {
"jhipster": "./cli/jhipster.js"
},
"repository": {
"type": "git",
"url": "git://github.com/jhipster/generator-jhipster.git"
},
"scripts": {
"prettier:format": "prettier --write \"{,**/}*.{js,json,md,yml,java}\"",
"prettier:check": "prettier --check \"{,**/}*.{js,json,md,yml,java}\"",
"completion": "tabtab install --name jhipster --auto",
"lint": "npm run eslint && npm run ejs-lint",
"lint-fix": "npm run prettier:format && npm run eslint -- --fix",
"eslint": "eslint .",
"ejs-lint": "mocha test/ejslint.js",
"ejslint": "ejslint",
"pretest": "npm run lint",
"test": "mocha --no-insight --forbid-only --parallel",
"jsdoc": "jsdoc --configure jsdoc-conf.json",
"jdl:test": "mocha test/jdl --no-insight --forbid-only -p",
"jdl:test-watch": "npm run jdl:test -- --watch"
},
"dependencies": {
"aws-sdk": "2.766.0",
"axios": "0.20.0",
"chalk": "4.1.0",
"chevrotain": "7.0.2",
"commander": "6.1.0",
"conf": "7.1.2",
"didyoumean": "1.2.1",
"ejs": "3.1.5",
"faker": "5.1.0",
"find-up": "5.0.0",
"glob": "7.1.6",
"gulp-filter": "6.0.0",
"insight": "0.10.3",
"js-yaml": "3.14.0",
"lodash": "4.17.20",
"meow": "7.1.1",
"minimatch": "3.0.4",
"normalize-path": "3.0.0",
"ora": "5.1.0",
"os-locale": "5.0.0",
"parse-gitignore": "1.0.1",
"pluralize": "8.0.0",
"prettier": "2.1.2",
"prettier-plugin-java": "0.8.2",
"progress": "2.0.3",
"randexp": "0.5.3",
"semver": "7.3.2",
"shelljs": "0.8.4",
"then-request": "6.0.2",
"through2": "4.0.2",
"uuid": "8.3.1",
"winston": "3.3.3",
"yeoman-environment": "2.10.3",
"yeoman-generator": "4.12.0"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "1.0.18-4.3.1",
"chai": "4.2.0",
"ejs-lint": "1.1.0",
"eslint": "7.10.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-mocha": "8.0.0",
"eslint-plugin-prettier": "3.1.4",
"fs-extra": "9.0.1",
"jsdoc": "3.6.6",
"mocha": "8.1.3",
"proxyquire": "2.1.3",
"sinon": "9.1.0",
"sinon-chai": "3.5.0",
"yeoman-assert": "3.1.1",
"yeoman-test": "3.0.0"
},
"engines": {
"node": ">=12.12.0",
"npm": ">=6.14.4"
},
"license": "Apache-2.0",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/generator-jhipster",
"logo": "https://opencollective.com/opencollective/logo.txt"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/generator-jhipster"
}
}