forked from jhipster/jhipster-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.58 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
{
"name": "jhlite",
"version": "0.26.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},*.{js,ts},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.2.5",
"mitt": "3.0.0",
"vue": "3.2.45",
"vue-router": "4.1.6"
},
"devDependencies": {
"@prettier/plugin-xml": "2.2.0",
"@rushstack/eslint-patch": "1.2.0",
"@tikui/core": "4.1.0",
"@types/sinon": "10.0.13",
"@typescript-eslint/parser": "5.49.0",
"@vitejs/plugin-vue": "4.0.0",
"@vitest/coverage-istanbul": "0.28.2",
"@vue/eslint-config-prettier": "7.0.0",
"@vue/eslint-config-typescript": "11.0.2",
"@vue/test-utils": "2.2.7",
"cypress": "12.4.0",
"eslint": "8.32.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-vue": "9.9.0",
"fontello-cli": "0.6.2",
"husky": "8.0.3",
"jsdom": "21.1.0",
"lint-staged": "13.1.0",
"postcss-scss": "4.0.6",
"prettier": "2.8.3",
"prettier-plugin-java": "2.0.0",
"prettier-plugin-packagejson": "2.4.0",
"pug-lint": "2.6.0",
"rimraf": "4.1.2",
"sass": "1.57.1",
"sinon": "15.0.1",
"stylelint": "14.16.1",
"stylelint-config-concentric-order": "5.1.0",
"stylelint-config-standard": "29.0.0",
"stylelint-config-standard-scss": "6.1.0",
"tikuidoc-tikui": "5.0.2",
"typescript": "4.9.4",
"vite": "4.0.4",
"vitest": "0.28.2",
"vitest-sonar-reporter": "0.3.3",
"vue-tsc": "1.0.24"
},
"engines": {
"node": ">=16.0.0"
},
"cacheDirectories": [
"node_modules"
]
}