-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.22 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
{
"name": "kindling",
"private": true,
"description": "A WordPress block theme by the Matchbox Design Group",
"author": "Matchbox Design Group",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"theme"
],
"homepage": "https://github.com/matchboxdesigngroup/kindling#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/matchboxdesigngroup/kindling.git"
},
"bugs": {
"url": "https://github.com/matchboxdesigngroup/kindling/issues"
},
"engines": {
"node": ">=20.10.0",
"yarn": ">=4.4.1"
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"devDependencies": {
"@wordpress/block-editor": "^13.0.6",
"@wordpress/blocks": "^13.0.3",
"@wordpress/components": "^28.0.3",
"@wordpress/element": "^6.0.1",
"@wordpress/hooks": "^4.0.1",
"@wordpress/icons": "^10.0.2",
"@wordpress/scripts": "^28.0.2",
"autoprefixer": "^10.4.14",
"browser-sync": "2.29.1",
"browser-sync-webpack-plugin": "2.3.0",
"classnames": "^2.3.2",
"dotenv": "^16.0.3",
"file-loader": "^6.2.0",
"postcss": "^8.4.24",
"stylelint": "^14.13.0",
"stylelint-config-prettier": "9.0.5",
"tailwindcss": "^3.3.2",
"wicg-inert": "^3.1.2"
},
"dependencies": {
"@playwright/test": "^1.46.1",
"aos": "^3.0.0-beta.6",
"caniuse-lite": "^1.0.30001520",
"eslint": "^9.9.1",
"glob": "^10.2.7",
"react": "18.3.1",
"react-dom": "18.3.1",
"swiper": "^9.3.0",
"webpack": "^5.94.0"
},
"resolutions": {
"react": "18.3.1",
"react-dom": "18.3.1"
},
"scripts": {
"build": "wp-scripts build --webpack-src-dir=assets",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"dev": "wp-scripts start --webpack-src-dir=assets --hot",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js"
},
"packageManager": "[email protected]"
}