-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.85 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
{
"name": "kensaku",
"description": "A WordPress package to search Entities including Rest API Endpoints and React Components",
"author": "guido scialfa <[email protected]>",
"main": "./build/index.js",
"license": "GPL-2.0-or-later",
"engines": {
"node": "20"
},
"devDependencies": {
"@faker-js/faker": "^8",
"@jest/globals": "^29.4.3",
"@testing-library/dom": "^10.0.0",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.1",
"@total-typescript/shoehorn": "^0.1.0",
"@types/node": "^20.0.0",
"@wordpress/dependency-extraction-webpack-plugin": "^4.8.0",
"@wordpress/env": "^5.9.0",
"@wordpress/eslint-plugin": "^19.0.0",
"@wordpress/scripts": "^26.0.0",
"eslint": "^8.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.0.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.5.0",
"react-dom": "~18.2.0",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "~5.1.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"yarn": "^1.22.19"
},
"dependencies": {
"@types/lodash": "^4",
"@wordpress/api-fetch": "~6.21.0",
"@wordpress/components": "~23.1.0",
"@wordpress/compose": "^6.23.0",
"@wordpress/core-data": "~6.12.0",
"@wordpress/hooks": "^3.49.0",
"@wordpress/i18n": "~4.24.0",
"classnames": "^2.3.2",
"lodash": "^4.17.21",
"react": "~18.2.0"
},
"scripts": {
"wp-env": "wp-env",
"build": "wp-scripts build --webpack-src-dir=./sources/client/src",
"build:dev": "wp-scripts start --webpack--devtool=inline-source-map --webpack-src-dir=./sources/client/src",
"cs:fix": "wp-scripts format ./sources/client",
"lint:js": "wp-scripts lint-js ./sources/client",
"lint:js:fix": "wp-scripts lint-js --fix ./sources/client",
"test": "jest",
"test:update-snapshots": "yarn test -u"
}
}