-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.57 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
{
"private": true,
"name": "larave-vue3-spa-skeleton",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "./node_modules/.bin/eslint -c .eslintrc.js --ignore-path .gitignore resources/js/** --ext .js,.vue --max-warnings=0",
"lint-fix": "./node_modules/.bin/eslint -c .eslintrc.js --ignore-path .gitignore resources/js/** --ext .js,.vue --fix"
},
"lint-staged": {
"*.{js,vue}": [
"./node_modules/.bin/eslint -c .eslintrc.js --fix --max-warnings=0"
],
"*.php": [
"./vendor/bin/pint --dirty"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"eslint": "^7.20.0",
"eslint-plugin-vue": "^7.6.0",
"husky": "4",
"lint-staged": "11.1.2",
"sass": "^1.57.1"
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.10",
"@fortawesome/fontawesome-free": "^6.2.1",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/compiler-sfc": "^3.2.29",
"@websanova/vue-auth": "^4.2.0",
"axios": "^1.1.2",
"dayjs": "^1.10.7",
"element-plus": "^2.2.27",
"laravel-vite-plugin": "^0.7.2",
"lodash": "^4.17.19",
"pinia": "^2.0.28",
"postcss": "^8.1.14",
"resolve-url-loader": "4.0.0",
"vite": "^4.0.0",
"vue": "3.2",
"vue-axios": "^3.4.0",
"vue-i18n": "^9.2.2",
"vue-router": "^4.0.12"
}
}