-
Notifications
You must be signed in to change notification settings - Fork 138
/
package.json
90 lines (90 loc) · 3.11 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "wd_s",
"version": "4.0.0",
"private": true,
"description": "A starter theme from WebDevStudios.",
"author": "WebDevStudios <contact@webdevstudios.com>",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"Theme"
],
"homepage": "https://github.com/WebDevStudios/wd_s/#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/WebDevStudios/wd_s.git"
},
"bugs": {
"url": "https://github.com/WebDevStudios/wd_s/issues"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"dependencies": {
"@wordpress/eslint-plugin": "^17.0.0",
"@wordpress/scripts": "^26.13.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-webpack-plugin": "^4.0.1",
"imagemin-webpack-plugin": "^2.4.2",
"offline-github-changelog": "^3.0.1",
"postcss-loader": "^7.3.3",
"postcss-move-props-to-bg-image-query": "^4.0.0",
"postcss-preset-env": "^9.1.1",
"sass-loader": "^13.2.2",
"stylelint-config-prettier": "^9.0.5",
"stylelint-webpack-plugin": "^4.1.1",
"svg-spritemap-webpack-plugin": "^4.5.0",
"svg-transform-loader": "^2.0.13",
"tailwindcss": "^3.3.3"
},
"devDependencies": {
"@evilmartians/lefthook": "^1.4.9",
"@wordpress/prettier-config": "^2.14.0",
"auto-changelog": "^2.4.0",
"autoprefixer": "^10.4.16",
"browser-sync": "^2.29.3",
"css-loader": "^6.7.3",
"eslint-plugin-prettier": "^5.0.0",
"glob": "^10.3.3",
"mini-css-extract-plugin": "^2.7.5",
"npm-run-all": "^4.1.5",
"pa11y-ci": "^3.0.1",
"pa11y-ci-reporter-html": "^6.0.2",
"postcss": "^8.4.31",
"prettier": "npm:wp-prettier@^3.0.3",
"webpack-cli": "^5.0.2",
"webpack-merge": "^5.8.0"
},
"scripts": {
"accessibility": "pa11y-ci --reporter=pa11y-ci-reporter-html --sitemap $npm_config_url/sitemap.xml",
"build": "cross-env NODE_ENV=production wp-scripts build --config webpack.prod.js",
"build:pot": "composer run-script pot",
"build:all": "composer install --quiet && composer run-script pot && npm run build",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"dev": "npm run watch",
"format": "run-p format:*",
"format:css": "npx prettier '**/*.scss' --write && npm run lint:css -- --fix",
"format:js": "wp-scripts format && npm run lint:js -- --fix",
"format:md": "npx markdownlint-cli . --fix",
"format:php": "composer run-script format",
"lint": "run-p lint:*",
"lint:css": "wp-scripts lint-style '**/*.scss'",
"lint:js": "wp-scripts lint-js",
"lint:md": "wp-scripts lint-md-docs",
"lint:php": "composer run-script lint",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"report": "composer run-script report",
"packages-update": "wp-scripts packages-update",
"postinstall": "npx lefthook install",
"start": "cross-env NODE_ENV=development wp-scripts start",
"sync": "browser-sync start --https --proxy https://wdunderscores.test --no-open --files 'build/*.*, **/*.html, **/*.php, !node_modules/**/*.html'",
"version": "auto-changelog -p && git add CHANGELOG.md",
"watch": "run-p start sync"
}
}