-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.19 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
{
"private": true,
"scripts": {
"reset": "rm -fr node_modules package-lock.json && npm install && npm run dev",
"clear": "npm run reset",
"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": {
"@shufo/prettier-plugin-blade": "^1.0.4",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"alpinejs": "^3.0.6",
"autoprefixer": "^10.4.0",
"axios": "^0.25",
"copy-webpack-plugin": "^10.2.0",
"husky": "^7.0.4",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^10.0.1",
"imagemin-webpack-plugin": "^2.4.2",
"laravel-mix": "^6.0.39",
"lint-staged": "^12.1.4",
"lodash": "^4.17.19",
"postcss": "^8.4.5",
"postcss-import": "^14.0.1",
"postcss-purgecss-laravel": "^2.0.0",
"prettier": "^2.5.1",
"stylelint": "^14.2.0",
"stylelint-config-standard": "^24.0.0",
"sweetalert2": "^11.3.0",
"tailwindcss": "^3.0.7"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 4,
"printWidth": 80
},
"lint-staged": {
"*.php": [
"vendor/bin/php-cs-fixer fix --config=.php_cs-fixer.dist.php"
],
"*.(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"
}
},
"dependencies": {
"@marcreichel/alpine-autosize": "^1.0.0",
"clipboard": "^2.0.10",
"laravel-vapor": "^0.5.1",
"puppeteer": "^13.0.1",
"tippy.js": "^6.3.7"
}
}