-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.39 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
{
"name": "tharsheblows-alphabet-guess",
"author": "Mary (JJ) Jay",
"license": "GPL-2.0-or-later",
"version": "0.0.1",
"description": "Playing around with interactivity stuff",
"scripts": {
"prepare": "git config core.hooksPath ./tools/git-hooks",
"postinstall": "composer install",
"build": "wp-scripts build --experimental-modules",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format": "npm-run-all format:*",
"lint": "npm-run-all lint:*",
"lint:phpcs": "composer run lint:phpcs",
"format:php": "composer run format",
"lint:phpstan": "composer run lint:phpstan",
"lint:css": "wp-scripts lint-style",
"format:css": "npm run lint:css -- --fix",
"lint:js": "wp-scripts lint-js",
"format:js": "npm run lint:js -- --fix",
"lint:md:docs": "wp-scripts lint-md-docs",
"format:md:docs": "npm run lint:md:docs -- --fix",
"packages-update": "wp-scripts packages-update",
"dev": "wp-scripts start --experimental-modules",
"start": "wp-env start --xdebug",
"stop-all": "docker stop $(docker ps --all --quiet)",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js"
},
"devDependencies": {
"@wordpress/env": "^9.7.0",
"@wordpress/scripts": "^27.6.0",
"concurrently": "^8.2.2",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"postcss-preset-env": "^9.5.4",
"stylelint-use-logical": "^2.1.2"
}
}