This repository was archived by the owner on Jan 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.05 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.05 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "blank-theme",
"version": "2.0.0",
"description": "Blank Theme Packages",
"author": "rtCamp",
"license": "GPL-2.0-or-later",
"private": true,
"keywords": [
"rtcamp",
"wp-theme",
"blank-theme"
],
"homepage": "https://github.com/rtCamp/blank-theme#readme",
"repository": {
"type": "git",
"url": "https://github.com/rtCamp/blank-theme.git"
},
"bugs": {
"url": "https://github.com/rtCamp/blank-theme/issues"
},
"dependencies": {
"foundation-sites": "^6.6.3",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@wordpress/scripts": "^30.8.1",
"cross-env": "^7.0.3",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-webpack-plugin": "^5.0.0",
"husky": "^9.1.7",
"jest-silent-reporter": "^0.6.0",
"lint-staged": "^15.4.3",
"npm-run-all": "^4.1.5",
"postcss-preset-env": "^10.1.3",
"stylelint-webpack-plugin": "^5.0.1",
"webpack-remove-empty-scripts": "^1.0.4"
},
"scripts": {
"build:dev": "cross-env NODE_ENV=development npm-run-all 'build:!(dev|prod)'",
"build:prod": "cross-env NODE_ENV=production npm-run-all 'build:!(dev|prod)'",
"build:js": "wp-scripts build --experimental-modules",
"start": "wp-scripts start --experimental-modules",
"clean": "rm -rf assets/build/*",
"init": "./bin/init.js && npm run build:pot",
"lint:all": "npm-run-all --parallel lint:*",
"lint:css": "wp-scripts lint-style ./assets/src",
"lint:css:fix": "npm run lint:css -- --fix ./assets/src",
"lint:js": "wp-scripts lint-js ./assets/src",
"lint:js:fix": "npm run lint:js -- --fix ./assets/src",
"lint:js:report": "npm run lint:js -- --output-file lint-js-report.json --format json .",
"lint:php": "php vendor/bin/phpcs",
"lint:php:fix": "node ./bin/phpcbf.js",
"lint:package-json": "wp-scripts lint-pkg-json --ignorePath .gitignore",
"lint:staged": "lint-staged",
"build:pot": "composer run pot",
"precommit": "npm-run-all lint:* pot",
"prepare": "husky install && npm run init",
"wp-env": "wp-env"
},
"browserslist": [
"extends @wordpress/browserslist-config"
]
}