-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
75 lines (75 loc) · 2.22 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
{
"name": "generator-jhipster-nodejs",
"version": "3.0.0",
"description": "A NodeJS blueprint that creates the backend using NodeJS with NestJS framework",
"keywords": [
"yeoman-generator",
"jhipster-blueprint",
"jhipster-8",
"nodejs"
],
"homepage": "https://github.com/jhipster/generator-jhipster-nodejs",
"bugs": {
"url": "https://github.com/jhipster/generator-jhipster-nodejs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhipster/generator-jhipster-nodejs.git"
},
"license": "Apache-2.0",
"author": {
"name": "Angelo Manganiello",
"email": "[email protected]",
"url": "https://github.com/amanganiello90"
},
"contributors": [
"Deepu KS <[email protected]> (https://deepu105.github.io)",
"Hadi Rasouli (https://github.com/hadirsa)",
"Iván García Sainz-Aja (https://github.com/ivangsa)",
"Daniel Franco <[email protected]> (https://github.com/DanielFran)"
],
"type": "module",
"main": "generators/app/index.js",
"bin": {
"nhipster": "cli/cli.cjs"
},
"files": [
"cli",
"generators",
"!**/__*",
"!**/*.snap",
"!**/*.spec.?(c|m)js"
],
"scripts": {
"ejslint": "ejslint generators/**/*.ejs",
"lint": "eslint .",
"lint-fix": "npm run ejslint && npm run lint -- --fix",
"prettier-check": "prettier --check \"{,**/}*.{md,json,yml,html,cjs,mjs,js,cts,mts,ts,tsx,css,scss,vue,java}\"",
"prettier-format": "prettier --write \"{,**/}*.{md,json,yml,html,cjs,mjs,js,cts,mts,ts,tsx,css,scss,vue,java}\"",
"sonar:scanner": "sonar-scanner",
"pretest": "npm run prettier-check && npm run lint",
"test": "vitest run",
"update-snapshot": "vitest run --update",
"vitest": "vitest"
},
"dependencies": {
"chalk": "^5.3.0",
"generator-jhipster": "8.8.0"
},
"devDependencies": {
"ejs-lint": "2.0.1",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.14.0",
"prettier": "3.4.2",
"prettier-plugin-packagejson": "2.5.6",
"sonarqube-scanner": "3.5.0",
"vitest": "2.1.8",
"yeoman-test": ">=8.2.0"
},
"engines": {
"generator-jhipster": "8.8.0",
"node": "^18.19.0 || >= 20.6.1"
}
}