forked from jhipster/jhipster-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.78 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
{
"name": "jhlite",
"version": "1.1.1-SNAPSHOT",
"description": "JHipster Lite",
"homepage": "https://www.jhipster.tech/",
"bugs": "https://github.com/jhipster/jhipster-lite/issues",
"repository": {
"type": "git",
"url": "git://github.com/jhipster/jhipster-lite.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/generator-jhipster"
},
"license": "Apache-2.0",
"scripts": {
"build": "vue-tsc -p tsconfig.build.json --noEmit && vite build --emptyOutDir && tikui-core build",
"dev": "npm run tikui:serve & npm run webapp:serve",
"e2e": "cypress open --config-file src/test/javascript/cypress/cypress-config.ts",
"e2e:headless": "cypress run --headless --config-file src/test/javascript/cypress/cypress-config.ts",
"format": "prettier . --write",
"glyph:build": "rimraf .fontello-session && fontello-cli install --config src/main/glyph/config.json --font src/main/glyph/font --css src/main/glyph/css",
"glyph:open": "rimraf .fontello-session && fontello-cli open --config src/main/glyph/config.json",
"lint": "npm run lint:js && npm run lint:pug && npm run lint:sass && npm run prettier:format",
"lint:ci": "npm run lint:ci:js && npm run lint:ci:pug && npm run lint:ci:sass && npm run prettier:check",
"lint:ci:js": "npm run lint:js:run -- --no-fix",
"lint:ci:pug": "pug-lint src/main/style",
"lint:ci:sass": "stylelint 'src/main/style/**/*.{css,scss}'",
"lint:js": "npm run lint:js:run -- --fix",
"lint:js:run": "eslint --ext .js,.ts,.vue --ignore-path .gitignore src/main/webapp src/test/javascript",
"lint:pug": "npm run lint:ci:pug",
"lint:sass": "npm run lint:ci:sass -- --fix",
"prepare": "husky install",
"prettier:check": "npm run prettier:run -- --check",
"prettier:format": "npm run prettier:run -- --write",
"prettier:run": "prettier '{{src/**/,}*.{md,json,yml,html,vue,java,xml,feature},*.{js,ts},.github/**/*.yml,documentation/**/*.md,src/{main/glyph,main/webapp,test/javascript}/**/*.{css,scss}}'",
"preview": "vite preview",
"start": "npm run dev",
"test": "npm run vitest -- run --coverage --",
"test:watch": "npm run vitest --",
"tikui:serve": "tikui-core serve",
"vitest": "vitest",
"webapp:serve": "vite"
},
"dependencies": {
"axios": "1.6.4",
"mitt": "3.0.1",
"placeholder-loading": "^0.6.0",
"vue": "3.3.4",
"vue-router": "4.2.5"
},
"devDependencies": {
"@prettier/plugin-xml": "3.2.2",
"@rushstack/eslint-patch": "1.6.1",
"@tikui/core": "4.1.0",
"@types/sinon": "17.0.2",
"@typescript-eslint/eslint-plugin": "6.17.0",
"@typescript-eslint/parser": "6.17.0",
"@vitejs/plugin-vue": "5.0.2",
"@vitest/coverage-istanbul": "1.1.2",
"@vue/eslint-config-prettier": "9.0.0",
"@vue/eslint-config-typescript": "12.0.0",
"@vue/test-utils": "2.4.3",
"cypress": "13.6.2",
"eslint": "8.56.0",
"eslint-plugin-cypress": "2.15.1",
"eslint-plugin-prettier": "5.1.2",
"eslint-plugin-vue": "9.19.2",
"fontello-cli": "0.6.2",
"husky": "8.0.3",
"jsdom": "23.0.1",
"lint-staged": "15.2.0",
"postcss-scss": "4.0.9",
"prettier": "3.1.1",
"prettier-plugin-gherkin": "2.2.1",
"prettier-plugin-java": "2.5.0",
"prettier-plugin-packagejson": "2.4.8",
"pug-lint": "2.7.0",
"rimraf": "5.0.5",
"sass": "1.69.7",
"sinon": "17.0.1",
"stylelint": "15.11.0",
"stylelint-config-concentric-order": "5.2.0",
"stylelint-config-standard": "34.0.0",
"stylelint-config-standard-scss": "11.1.0",
"tikuidoc-tikui": "5.0.2",
"typescript": "5.3.3",
"vite": "5.0.10",
"vitest": "1.1.2",
"vitest-sonar-reporter": "1.0.0",
"vue-tsc": "1.8.27"
},
"engines": {
"node": ">=16.0.0"
},
"cacheDirectories": [
"node_modules"
]
}