package.json
1.2 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
34
35
36
37
38
39
40
41
42
43
{
"name": "droopler_subtheme",
"description": "A SCSS subtheme for Droopler.",
"private": true,
"engines": {
"npm": ">=6.0",
"node": ">=16.0",
"yarn": ">=1.6"
},
"license": "MIT",
"scripts": {
"postinstall": "find node_modules/ -name '*.info' -type f -delete",
"dev": "mix",
"watch": "mix watch",
"stylint": "npx stylelint '**/*.scss'",
"stylint-fix": "npx stylelint '**/*.scss' --fix",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"production": "mix --production"
},
"devDependencies": {
"@popperjs/core": "^2.11",
"autoprefixer": "^10.4.16",
"bootstrap": "^5.3",
"browser-sync": "^2.29",
"browser-sync-webpack-plugin": "^2.3.0",
"cross-env": "^7.0.3",
"laravel-mix": "^6.0",
"laravel-mix-copy-watched": "^3.0.0",
"laravel-mix-stylelint": "^1.0",
"postcss-scss": "^4.0",
"sass": "^1.69",
"sass-loader": "^13.3",
"stylelint": "^14.16",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^3.1",
"stylelint-config-standard-scss": "^6.1",
"stylelint-webpack-plugin": "^3.3"
},
"dependencies": {
"clean-webpack-plugin": "^4.0.0"
}
}