-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"prepare": "husky install",
"test": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "vitest typecheck"
},
"devDependencies": {
"@iconify-json/ic": "^1.1.13",
"@popperjs/core": "^2.11.7",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"@vitejs/plugin-vue": "^4.1.0",
"@vitest/coverage-c8": "^0.27.3",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/runtime-core": "^3.2.47",
"@vueuse/core": "^9.13.0",
"@vueuse/head": "^1.1.23",
"autoprefixer": "^10.4.14",
"axios": "^1.3.4",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-vue": "^9.10.0",
"husky": "^8.0.3",
"hybridly": "0.1.0-alpha.9",
"laravel-vite-plugin": "^0.7.4",
"lint-staged": "^13.2.0",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"tailwindcss": "^3.3.1",
"typescript": "^4.9.5",
"unplugin-auto-import": "^0.12.2",
"unplugin-icons": "^0.15.3",
"unplugin-vue-components": "^0.22.12",
"vite": "^4.2.1",
"vite-plugin-run": "^0.2.1",
"vitest": "^0.27.3",
"vue": "^3.2.47",
"vue-i18n": "^9.2.2"
},
"postcss": {
"plugins": {
"autoprefixer": {},
"tailwindcss": {}
}
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.{js,ts,vue,md,yaml,yml,json}": "prettier --write --ignore-unknown",
"*.php": "./vendor/bin/pint"
}
}