-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.84 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
{
"name": "starter-kit-theme",
"description": "WordPress starter theme with a modern development stack for launching projects faster and easily",
"engines": {
"node": ">=18.0.0 <19",
"npm": ">=9 <11"
},
"dependencies": {
"@wordpress/babel-preset-default": "7.28.0",
"bootstrap": "5.3.2",
"font-awesome": "4.7.0",
"glob": "10.0.0",
"laravel-mix": "6.0.49",
"sass": "1.69.4",
"sass-loader": "13.3.2",
"webfonts-loader": "8.0.1",
"mini-css-extract-plugin": "^1.6.2"
},
"devDependencies": {
"@wordpress/eslint-plugin": "17.2.0",
"browser-sync": "2.29.3",
"browser-sync-webpack-plugin": "2.3.0",
"clean-webpack-plugin": "4.0.0",
"eslint": "8.52.0",
"eslint-webpack-plugin": "4.0.1",
"stylelint": "13.11.0",
"stylelint-config-recommended-scss": "4.2.0",
"stylelint-config-standard": "20.0.0",
"stylelint-scss": "3.19.0",
"stylelint-webpack-plugin": "2.2.0"
},
"scripts": {
"replaceNames": "",
"install-dev": "npm install && npm run development",
"install-prod": "npm ci --only=production && npm run production",
"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",
"lint": "npm run lint:style; npm run lint:js",
"lint:js": "eslint '**/*.@(js|jsx)' --config .eslintrc.json",
"lint:js:fix": "eslint '**/*.@(js|jsx)' --config .eslintrc.json --fix",
"lint:style": "stylelint 'assets/src/**/*.scss' 'blocks/!(_)**/src/*.scss' --config .stylelintrc.json",
"lint:style:fix": "stylelint 'assets/src/**/*.scss' 'blocks/!(_)**/src/*.scss' --config .stylelintrc.json --fix"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not IE > 0",
"not dead"
]
}