-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.93 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
{
"name": "tktk-theme",
"version": "1.0.0",
"description": "Starter development theme for WordPress",
"author": "Britton Walker",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"Theme"
],
"homepage": "https://github.com/brittonwalker/tktk-theme#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/brittonwalker/tktk-theme.git"
},
"bugs": {
"url": "https://github.com/brittonwalker/tktk-theme/issues"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"main": "index.js",
"dependencies": {
"@barba/core": "^2.9.7",
"split-type": "^0.3.2"
},
"devDependencies": {
"@wordpress/eslint-plugin": "^13.0.0",
"@wordpress/prettier-config": "^2.0.0",
"@wordpress/scripts": "^23.2.0",
"browser-sync": "^2.27.10",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-prettier": "^4.2.1",
"gsap": "^3.9.1",
"headroom.js": "^0.12.0",
"npm-run-all": "^4.1.5",
"stylelint-config-prettier": "^9.0.3",
"tailwindcss": "^3.0.15"
},
"scripts": {
"build": "wp-scripts build src/index.js src/editor.js",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"dev": "npm run watch",
"lint": "run-p lint:*",
"format": "run-p format:*",
"format:css": "npm run lint:css -- --fix",
"format:php": "composer run-script format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:php": "composer run-script lint",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"start": "wp-scripts start src/index.js src/editor.js",
"sync": "browser-sync start --https --proxy https://tktk-theme.test --no-open --files 'build/*.*, **/*.html, **/*.php, !node_modules/**/*.html'",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js",
"watch": "run-p start sync"
}
}