-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.88 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
{
"name": "litesample",
"version": "0.0.0",
"private": true,
"description": "JHipster Lite Sample Application",
"license": "UNLICENSED",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "npm-run-all build:*",
"build:tsc": "vue-tsc -p tsconfig.build.json --noEmit",
"build:vite": "vite build --emptyOutDir",
"dev": "npm-run-all --parallel dev:*",
"dev:vite": "vite",
"preview": "vite preview",
"start": "vite",
"watch:tsc": "npm run build:tsc -- --watch",
"lint": "eslint .",
"test": "npm run watch:test",
"test:coverage": "vitest run --coverage",
"watch": "npm-run-all --parallel watch:*",
"watch:test": "vitest --",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"prepare": "husky"
},
"devDependencies": {
"@vitejs/plugin-vue": "5.1.4",
"@vue/test-utils": "2.4.6",
"@vue/tsconfig": "0.5.1",
"eslint-plugin-vue": "9.29.1",
"jsdom": "25.0.1",
"vite": "5.4.9",
"vue-tsc": "2.1.6",
"@types/sinon": "17.0.3",
"sinon": "19.0.2",
"typescript": "5.6.2",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"@vitest/coverage-istanbul": "2.1.3",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"globals": "15.11.0",
"npm-run-all2": "7.0.0",
"typescript-eslint": "8.11.0",
"vite-tsconfig-paths": "5.0.1",
"vitest": "2.1.3",
"vitest-sonar-reporter": "2.0.0",
"@prettier/plugin-xml": "3.4.1",
"prettier": "3.3.3",
"prettier-plugin-gherkin": "3.1.0",
"prettier-plugin-java": "2.6.4",
"prettier-plugin-organize-imports": "4.1.0",
"prettier-plugin-packagejson": "2.5.3",
"husky": "9.1.6",
"lint-staged": "15.2.10"
},
"type": "module",
"dependencies": {
"vue": "3.5.12",
"axios": "1.7.7",
"vue-router": "4.4.5",
"piqure": "2.1.1"
}
}