-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
95 lines (95 loc) · 2.47 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"type": "module",
"version": "0.1.3",
"private": true,
"packageManager": "[email protected]",
"author": "Creasi Developers <[email protected]>",
"scripts": {
"build": "vite build",
"dev": "vite",
"lint": "eslint --ext .ts,.json,.vue resources",
"postinstall": "simple-git-hooks",
"release": "standard-version -s"
},
"dependencies": {
"axios": "^1.7.9",
"date-fns": "^3.6.0",
"firebase": "^10.14.1",
"pinia": "^2.3.0",
"pinia-plugin-persistedstate": "^3.2.3",
"qs": "^6.13.1",
"vue": "^3.5.13",
"vue-i18n": "^9.14.2"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@creasico/eslint-config": "^0.0.1",
"@fontsource/nunito": "^5.1.0",
"@iconify/vue": "^4.2.0",
"@inertiajs/core": "^1.3.0",
"@inertiajs/vue3": "^1.3.0",
"@intlify/unplugin-vue-i18n": "^2.0.0",
"@sentry/vite-plugin": "^2.22.7",
"@sentry/vue": "^7.120.2",
"@types/node": "^20.17.10",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/compiler-sfc": "^3.5.13",
"@vue/runtime-core": "^3.5.13",
"@vueuse/core": "^10.11.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"laravel-vite-plugin": "^1.1.1",
"lint-staged": "^15.2.11",
"naive-ui": "^2.40.4",
"simple-git-hooks": "^2.11.1",
"standard-version": "^9.5.0",
"unplugin-auto-import": "^0.17.8",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.4.11",
"vite-plugin-pwa": "^0.18.2",
"vite-plugin-windicss": "^1.9.4",
"windicss": "^3.5.6",
"workbox-core": "^7.3.0",
"workbox-precaching": "^7.3.0",
"workbox-routing": "^7.3.0",
"workbox-strategies": "^7.3.0",
"workbox-window": "^7.3.0",
"ziggy-js": "^1.8.2"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"simple-git-hooks": {
"commit-msg": "pnpm exec commitlint --edit $1",
"pre-commit": "pnpm exec lint-staged --allow-empty"
},
"lint-staged": {
"*.{json,js,ts,vue}": [
"eslint --fix"
],
"{app,config,database,resources,tests}/**/*.php": [
"php vendor/bin/pint --preset laravel"
]
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"browser": true
},
"extends": "@creasico/eslint-config/vue",
"parserOptions": {
"tsconfigRootDir": ".",
"project": "./tsconfig.json"
}
},
"standard-version": {}
}