-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.03 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.03 KB
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
{
"private": true,
"devDependencies": {
"@eslint/js": "^10.0.1",
"@fortawesome/fontawesome-free": "^7.2.0",
"bootstrap": "^5.3.8",
"eslint": "^10.4.0",
"highcharts": "^12.6.0",
"leaflet": "^1.9.4",
"leaflet.markercluster": "^1.5.3",
"sass": "^1.100.0",
"stylelint": "^17.12.0",
"stylelint-config-standard-scss": "^17.0.0",
"tablesort": "^5.7.1",
"vite": "^8.0.14",
"vite-plugin-static-copy": "^4.1.0"
},
"scripts": {
"postinstall": "npm run build",
"build": "vite build",
"cs": "npm run csCSS && npm run csJS",
"csCSS": "stylelint resources/css/*.scss",
"csJS": "eslint resources/js/*.js vite.config.js",
"csfix": "npm run csfixCSS && npm run csfixJS",
"csfixCSS": "stylelint resources/css/*.scss --fix",
"csfixJS": "eslint resources/js/*.js vite.config.js --fix"
},
"stylelint": {
"extends": [
"stylelint-config-standard-scss"
]
}
}