-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.58 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,
"type": "module",
"scripts": {
"dev": "vite --host --port 3000",
"build-production": "vite build",
"build-development": "vite build --mode development",
"build-staging": "vite build --mode staging",
"serve": "vite preview",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix resources/js",
"commit": "git-cz",
"format": "prettier ./resources/js --write"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@eslint/config-array": "^0.18.0",
"@eslint/object-schema": "^2.1.0",
"@quasar/vite-plugin": "^1.9.0",
"axios": "^1.6.7",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.21.1",
"husky": "^9.0.11",
"laravel-vite-plugin": "^1.0.1",
"sass-embedded": "^1.83.4",
"vite": "^5.1.3",
"vite-plugin-eslint": "^1.8.1"
},
"dependencies": {
"@quasar/extras": "^1.16.16",
"@tanstack/vue-query": "^5.66.0",
"@vitejs/plugin-vue": "^5.0.4",
"commitizen": "^4.3.0",
"date-fns": "^3.3.1",
"eslint-config-prettier": "^9.1.0",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"prettier": "^3.2.5",
"quasar": "^2.17.7",
"vue": "^3.5.13",
"vue-loader": "^17.4.2",
"vue-router": "^4.2.5"
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true",
"pre-commit": "echo \"[Husky] pre-commit\"",
"pre-push": "echo \"[Husky] pre-push\""
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}