-
-
Notifications
You must be signed in to change notification settings - Fork 214
/
package.json
106 lines (106 loc) · 4.01 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
{
"name": "jhlite",
"version": "1.22.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",
"type": "module",
"scripts": {
"build": "npm-run-all build:*",
"build:tikui": "tikui-core build",
"build:tsc": "vue-tsc -p tsconfig.build.json --noEmit",
"build:vite": "vite build --emptyOutDir",
"dev": "npm-run-all --parallel dev:*",
"dev:tikui": "tikui-core serve",
"dev:vite": "vite",
"e2e": "cypress open --config-file src/test/webapp/e2e/cypress-config.ts",
"e2e:headless": "cypress run --headless --config-file src/test/webapp/e2e/cypress-config.ts",
"format": "npm run prettier:format",
"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": "eslint . --fix --plugin eslint-plugin-pug src/main/style/**/*.pug && npm run lint:sass && npm run prettier:format",
"lint:ci": "eslint . && npm run prettier:check",
"lint:sass": "npm run lint:ci:sass -- --fix",
"lint:ci:sass": "stylelint '**/*.{css,scss}'",
"prepare": "husky",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"preview": "vite preview",
"start": "npm run dev",
"test": "npm run test:watch",
"test:component": "start-server-and-test tikui:serve-build http://localhost:9005 dev:vite http://localhost:9000 'cypress open --e2e --config-file src/test/webapp/component/cypress-config.ts'",
"test:component:headless": "start-server-and-test tikui:serve-build http://localhost:9005 dev:vite http://localhost:9000 'cypress run --headless --config-file src/test/webapp/component/cypress-config.ts'",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --",
"tikui:serve-build": "tikui-core build && serve -p 9005 target/classes/public/style",
"watch:": "npm-run-all --parallel watch:*",
"watch:test": "npm run test:watch",
"watch:tsc": "npm run build:tsc -- --watch"
},
"dependencies": {
"axios": "1.7.7",
"mitt": "3.0.1",
"piqure": "2.1.1",
"placeholder-loading": "0.6.0",
"vue": "3.5.12",
"vue-router": "4.4.5"
},
"devDependencies": {
"@eslint/js": "9.14.0",
"@prettier/plugin-pug": "3.2.0",
"@prettier/plugin-xml": "3.4.1",
"@tikui/core": "6.2.1",
"@types/sinon": "17.0.3",
"@typescript-eslint/eslint-plugin": "8.13.0",
"@typescript-eslint/parser": "8.13.0",
"@vitejs/plugin-vue": "5.1.4",
"@vitest/coverage-istanbul": "2.1.4",
"@vue/test-utils": "2.4.6",
"cypress": "13.15.2",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "4.1.0",
"eslint-plugin-pug": "1.2.5",
"eslint-plugin-vue": "9.30.0",
"fontello-cli": "0.6.2",
"globals": "15.12.0",
"husky": "9.1.6",
"jsdom": "25.0.1",
"lint-staged": "15.2.10",
"npm-run-all2": "7.0.1",
"postcss-scss": "4.0.9",
"prettier": "3.3.3",
"prettier-plugin-gherkin": "3.1.0",
"prettier-plugin-java": "2.6.5",
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-packagejson": "2.5.3",
"prettier-plugin-sh": "0.14.0",
"rimraf": "6.0.1",
"sass": "1.80.6",
"serve": "14.2.4",
"sinon": "19.0.2",
"start-server-and-test": "2.0.8",
"stylelint": "16.10.0",
"stylelint-config-concentric-order": "5.2.0",
"stylelint-config-standard-scss": "13.1.0",
"tikuidoc-tikui": "8.0.0",
"typescript": "5.6.3",
"typescript-eslint": "8.13.0",
"vite": "5.4.10",
"vitest": "2.1.4",
"vitest-sonar-reporter": "2.0.0",
"vue-tsc": "2.1.10"
},
"engines": {
"node": ">=20"
}
}