-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
51 lines (51 loc) · 1.3 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
{
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@vitejs/plugin-vue": "^4.1.0",
"autoprefixer": "^10.4.14",
"axios": "^1.6.2",
"laravel-vite-plugin": "^0.7.4",
"lodash": "^4.17.21",
"postcss": "^8.4.22",
"resolve-url-loader": "^5.0.0",
"tailwindcss": "^3.3.1",
"vite": "^4.2.2",
"vue": "^3.2.47",
"vue-loader": "^17.0.1",
"vue-template-compiler": "^2.6.12"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 4,
"printWidth": 80
},
"dependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"stylelint": "^15.5.0",
"stylelint-config-standard": "^33.0.0"
},
"lint-staged": {
"**/*.php*": [
"vendor/bin/duster lint"
],
"*.(css|scss)": [
"stylelint --config=node_modules/stylelint-config-standard/index.js"
],
"resources/**/*.(js|ts|tsx|css|vue)": [
"node_modules/.bin/prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}