-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
48 lines (48 loc) · 1.45 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
{
"private": true,
"scripts": {
"staging": "cross-env NODE_ENV=staging node_modules/webpack/bin/webpack.js --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "mix --production",
"dev": "mix",
"prod": "npm run production",
"watch": "mix watch",
"format": "prettier --write 'source/_assets/**/*.{css,js,vue}'",
"pre-commit": "lint-staged",
"prepare": "husky"
},
"dependencies": {
"autoprefixer": "^10.4.1",
"axios": "^1.0.0",
"browser-sync": "^3.0.0",
"browser-sync-v3-webpack-plugin": "^0.1.0",
"cross-env": "^7.0.3",
"extra-watch-webpack-plugin": "^1.0.3",
"fuse.js": "^7.0.0",
"hasbin": "^1.2.3",
"highlight.js": "^11.0.0",
"laravel-mix": "^6.0.11",
"laravel-mix-jigsaw": "^2.1.1",
"node-cmd": "^5.0.0",
"postcss": "^8.4.5",
"postcss-import": "^16.0.0",
"tailwindcss": "^3.0.11",
"vue": "^3.0.0",
"vue-loader": "^17.0.0",
"vue-template-compiler": "^2.6.12",
"yargs": "^17.0.1"
},
"devDependencies": {
"css-loader": "^7.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0"
},
"lint-staged": {
"source/_assets/**/*.{css,js,vue}": [
"prettier --write"
],
"*.php": [
"composer format"
]
}
}