-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.48 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
{
"name": "wp-entities-search",
"description": "A WordPress plugin to save posts as favorite using the new Interactive API",
"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": "^9.3.1",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@total-typescript/shoehorn": "^0.1.0",
"@types/react": "~18.2.0",
"@wordpress/create-block": "^4.41.0",
"@wordpress/dependency-extraction-webpack-plugin": "^4.8.0",
"@wordpress/env": "^5.9.0",
"@wordpress/scripts": "^26.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.5.0",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "~5.3.0",
"typescript-eslint": "^7.10.0",
"yarn": "^1.22.19"
},
"dependencies": {
"react": "~18.2.0"
},
"scripts": {
"wp-env": "wp-env",
"build": "wp-scripts build --webpack-src-dir=./sources/Blocks/like",
"build:dev": "wp-scripts start --webpack--devtool=inline-source-map --webpack-src-dir=./sources/Blocks/like",
"cs:fix": "wp-scripts format ./sources ./@types",
"lint:js": "wp-scripts lint-js ./sources ./@types",
"lint:js:fix": "wp-scripts lint-js --fix ./sources ./@types",
"test": "jest",
"test:update-snapshots": "yarn test -u"
}
}