-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.18 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
{
"private": true,
"devDependencies": {
"@eslint/js": "^9.14.0",
"@fortawesome/fontawesome-free": "^6.6.0",
"bootstrap": "^5.3.3",
"eslint": "^9.14.0",
"fs-extra": "^11.2.0",
"highcharts": "^11.4.8",
"laravel-mix": "^6.0.49",
"laravel-mix-make-file-hash": "^2.2.0",
"leaflet": "^1.9.4",
"leaflet.markercluster": "^1.5.3",
"resolve-url-loader": "^5.0.0",
"sass": "^1.80.6",
"sass-loader": "^16.0.3",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.1.0",
"tablesort": "^5.3.0"
},
"scripts": {
"postinstall": "npm run development",
"cs": "npm run csCSS && npm run csJS",
"csCSS": "stylelint resources/css/*.scss",
"csJS": "eslint resources/js/*.js webpack.mix.js",
"csfix": "npm run csfixCSS && npm run csfixJS",
"csfixCSS": "stylelint resources/css/*.scss --fix",
"csfixJS": "eslint resources/js/*.js webpack.mix.js --fix",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"production": "mix --production"
},
"stylelint": {
"extends": [
"stylelint-config-standard-scss"
]
}
}