-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.72 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
{
"name": "template-vue",
"version": "1.1.1",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"build": "pnpm run '/type-check|build-only/'",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "playwright install && playwright test",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "simple-git-hooks",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@fontsource/open-sans": "^5.1.0",
"pinia": "^2.3.0",
"vue": "^3.5.13",
"vue-i18n": "^10.0.5",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^6.0.2",
"@playwright/test": "^1.49.1",
"@tsconfig/node22": "^22.0.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.2",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/eslint-plugin": "^1.1.20",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.2.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "~0.7.0",
"eslint": "^9.17.0",
"eslint-plugin-playwright": "^2.1.0",
"eslint-plugin-vue": "^9.32.0",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"sass-embedded": "^1.83.0",
"simple-git-hooks": "^2.11.1",
"typescript": "~5.6.3",
"vite": "^6.0.6",
"vitest": "^2.1.8",
"vue-tsc": "^2.2.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": [
"eslint --fix",
"prettier --write -u"
]
}
}