-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
57 lines (57 loc) · 1.59 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
{
"name": "generator-jhipster-azure-spring-apps",
"version": "0.0.0",
"private": true,
"description": "Azure Spring Apps Application",
"keywords": [
"yeoman-generator",
"jhipster-blueprint",
"jhipster-7"
],
"license": "MIT",
"type": "module",
"imports": {
"#test-utils": "./test/utils.mjs"
},
"bin": {
"jhipster-azure-spring-apps": "cli/cli.mjs"
},
"files": [
"cli",
"generators"
],
"scripts": {
"ejslint": "ejslint generators/**/*.ejs && ejslint generators/**/*.ejs -d '&'",
"esmocha": "esmocha generators --no-insight --forbid-only",
"lint": "eslint .",
"lint-fix": "npm run ejslint && npm run lint -- --fix",
"prettier:check": "prettier --check \"{,src/**/}*.{md,json,yml,html,js,ts,tsx,css,scss,vue,java}\"",
"prettier:format": "prettier --write \"{,src/**/}*.{md,json,yml,html,js,ts,tsx,css,scss,vue,java}\"",
"pretest": "npm run prettier:check && npm run lint",
"test": "npm run esmocha",
"update-snapshot": "npm run esmocha -- --update-snapshot"
},
"dependencies": {
"chalk": "5.3.0",
"generator-jhipster": "^8.0.0-beta.3"
},
"devDependencies": {
"ejs-lint": "2.0.0",
"eslint": "8.45.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "5.0.0",
"esmocha": "1.0.1",
"prettier": "3.0.0",
"prettier-plugin-java": "2.2.0",
"prettier-plugin-packagejson": "2.4.5",
"yeoman-test": "8.0.0-rc.1"
},
"engines": {
"node": ">=16.13.0"
},
"cacheDirectories": [
"node_modules"
]
}