-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
53 lines (53 loc) · 1.44 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
{
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"prod": "vite build"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/typography": "^0.5.15",
"@vitejs/plugin-vue2": "^1.1.2",
"autoprefixer": "^10.4.4",
"axios": "^1.6.4",
"browser-sync": "^2.26.7",
"browser-sync-webpack-plugin": "^2.2.2",
"husky": "^8.0.1",
"laravel-vite-plugin": "^0.6.0",
"lint-staged": "^13.0.3",
"livewire-vue": "^0.3.1",
"lodash": "^4.17.15",
"postcss": "^8.4.12",
"prettier": "^2.7.1",
"resolve-url-loader": "^4.0.0",
"stylelint": "^14.10.0",
"stylelint-config-standard": "^27.0.0",
"tailwindcss": "^3.3.1",
"vite": "^3.0.2",
"vue": "^2.7.0",
"vue-loader": "^15.9.7",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"cross-env": "^7.0.3",
"v-calendar": "^2.4.1",
"vform": "^1.0.0"
},
"lint-staged": {
"*.php": [
"vendor/bin/php-cs-fixer fix --config=.php_cs.dist"
],
"*.(css|scss)": [
"stylelint"
],
"resources/**/*.(js|ts|tsx|css|vue)": [
"node_modules/.bin/prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && vendor/bin/tlint lint --diff"
}
}
}