forked from jhipster/jhipster-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.99 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
{
"name": "jhlite",
"version": "0.14.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": "vite",
"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",
"jest": "jest src/test/javascript/spec --logHeapUsage --maxWorkers=2 --no-cache",
"lint": "eslint --ext .js,.ts,.vue --ignore-path .gitignore --fix src/main/webapp src/test/javascript",
"prepare": "husky install",
"prettier:check": "prettier --check \"{,src/**/}*.{md,json,yml,html,js,ts,tsx,css,scss,vue,java,xml}\"",
"prettier:format": "prettier --write \"{,src/**/}*.{md,json,yml,html,js,ts,tsx,css,scss,vue,java,xml}\"",
"preview": "vite preview",
"start": "vite",
"test": "npm run jest --",
"test:clear": "jest --clearCache",
"test:watch": "npm run jest -- --watch",
"tikui:serve": "tikui-core serve"
},
"dependencies": {
"axios": "0.27.2",
"mitt": "3.0.0",
"vue": "3.2.39",
"vue-router": "4.1.5"
},
"devDependencies": {
"@prettier/plugin-xml": "2.2.0",
"@rushstack/eslint-patch": "1.1.4",
"@tikui/core": "3.0.0",
"@types/jest": "27.5.0",
"@types/sinon": "10.0.13",
"@typescript-eslint/parser": "5.37.0",
"@vitejs/plugin-vue": "3.1.0",
"@vue/eslint-config-prettier": "7.0.0",
"@vue/eslint-config-typescript": "10.0.0",
"@vue/test-utils": "2.0.2",
"cypress": "10.8.0",
"eslint": "8.23.1",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-vue": "8.7.1",
"fontello-cli": "0.6.2",
"husky": "8.0.1",
"jest": "26.6.3",
"jest-sonar-reporter": "2.0.0",
"jest-transform-stub": "2.0.0",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"prettier-plugin-java": "1.6.2",
"prettier-plugin-packagejson": "2.2.18",
"rimraf": "3.0.2",
"sass": "1.54.9",
"sinon": "14.0.0",
"tikuidoc-tikui": "5.0.0",
"ts-jest": "26.5.6",
"typescript": "4.8.3",
"vite": "3.1.0",
"vue-jest": "5.0.0-alpha.10",
"vue-tsc": "0.40.13"
},
"engines": {
"node": ">=14.18.1"
},
"cacheDirectories": [
"node_modules"
],
"jestSonar": {
"reportPath": "target/test-results/jest",
"reportFile": "TESTS-results-sonar.xml"
}
}