-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.89 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.89 KB
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": "seed4jsample",
"version": "0.0.0",
"private": true,
"description": "Seed4J Sample Application",
"license": "UNLICENSED",
"type": "module",
"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",
"lint": "eslint .",
"prepare": "husky",
"prettier:check": "prettier --check .",
"prettier:format": "prettier --write .",
"preview": "vite preview",
"start": "vite",
"test": "npm run watch:test",
"test:coverage": "vitest run --coverage",
"watch": "npm-run-all --parallel watch:*",
"watch:test": "vitest --",
"watch:tsc": "npm run build:tsc -- --watch"
},
"dependencies": {
"axios": "1.13.2",
"piqure": "2.1.2",
"vue": "3.5.26",
"vue-router": "4.6.4"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@prettier/plugin-xml": "3.4.2",
"@typescript-eslint/eslint-plugin": "8.50.0",
"@typescript-eslint/parser": "8.50.0",
"@vitejs/plugin-vue": "6.0.3",
"@vitest/coverage-istanbul": "4.0.16",
"@vue/test-utils": "2.4.6",
"@vue/tsconfig": "0.8.1",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-vue": "10.6.2",
"globals": "16.5.0",
"husky": "9.1.7",
"jsdom": "27.3.0",
"lint-staged": "16.2.7",
"npm-run-all2": "8.0.4",
"prettier": "3.7.4",
"prettier-plugin-gherkin": "3.1.3",
"prettier-plugin-java": "2.7.7",
"prettier-plugin-organize-imports": "4.3.0",
"prettier-plugin-packagejson": "2.5.20",
"typescript": "5.9.3",
"typescript-eslint": "8.50.0",
"vite": "7.3.0",
"vite-tsconfig-paths": "6.0.3",
"vitest": "4.0.16",
"vitest-sonar-reporter": "3.0.0",
"vue-tsc": "3.2.0"
},
"packageManager": "npm@11.7.0",
"engines": {
"node": ">=24"
}
}