-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.42 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
{
"name": "@wp-blocks/indexed-search",
"description": "An advanced WordPress indexed search plugin",
"private": true,
"type": "module",
"contributors": [
"Erik Golinelli <erik@codekraft.it> (https://codekraft.it/)",
"John Hooks <bitmachina@outlook.com> (https://johnhooks.io/)"
],
"homepage": "https://github.com/wp-blocks/indexed-search#readme",
"repository": {
"type": "git",
"url": "https://github.com/wp-blocks/indexed-search.git"
},
"bugs": "https://github.com/wp-blocks/indexed-search/issues",
"license": "GPL-2.0-or-later",
"scripts": {
"packages-update": "wp-scripts packages-update",
"build": "wp-scripts build --webpack-src-dir=./client/src",
"start": "wp-scripts start",
"format": "wp-scripts format ./client/src",
"lint:css": "wp-scripts lint-style",
"lint:js": "eslint --ext .js,.jsx,.cjs,.mjs,.ts,.tsx .",
"check": "tsc -b",
"test": "jest --silent=false --coverage",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-typescript": "^7.23.3",
"@jest/globals": "^29.7.0",
"@types/babel__core": "^7.20.5",
"@types/jest": "^29.5.10",
"@types/node": "^18.19.1",
"@types/wordpress__block-editor": "^11.5.7",
"@types/wordpress__blocks": "^12.5.11",
"@types/wordpress__components": "^23.0.8",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@wordpress/babel-plugin-makepot": "^5.31.0",
"@wordpress/block-editor": "^12.15.0",
"@wordpress/blocks": "^12.24.0",
"@wordpress/components": "^25.13.0",
"@wordpress/e2e-test-utils-playwright": "^0.15.0",
"@wordpress/env": "^8.13.0",
"@wordpress/jest-preset-default": "^11.18.0",
"@wordpress/prettier-config": "^3.4.0",
"@wordpress/scripts": "^26.18.0",
"@wordpress/stylelint-config": "^21.30.0",
"@wp-blocks/tsconfig": "^0.1.0",
"babel-jest": "^29.7.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stylelint": "^14.16.1",
"typescript": "^5.3.2"
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"stylelint": {
"extends": [
"@wordpress/stylelint-config",
"@wordpress/stylelint-config/scss"
],
"rules": {
"indentation": 2
}
}
}