forked from tighten/laravelversions
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.26 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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production"
},
"devDependencies": {
"autoprefixer": "^10.2.3",
"axios": "^0.21",
"laravel-mix": "^6.0.6",
"lodash": "^4.17.19",
"postcss": "^8.2.4",
"tailwindcss": "^2.0.2"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 4,
"printWidth": 80
},
"dependencies": {
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"stylelint": "^13.9.0",
"stylelint-config-standard": "^20.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"
}
}
}