-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.87 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
{
"name": "gutenbergex-ts",
"version": "0.1.0",
"private": true,
"description": "Gutenberg Examples in Typescript",
"license": "MIT",
"homepage": "https://github.com/wenchen/gutenbergex-ts/",
"repository": "git+https://github.com/wenchen/gutenbergex-ts.git",
"bugs": {
"url": "https://github.com/wenchen/gutenbergex-ts/issues"
},
"dependencies": {
"web-vitals": "^2.1.4"
},
"scripts": {
"build": "webpack --config webpack.config.js",
"plugin-zip": "wp-scripts plugin-zip",
"dev": "webpack --watch --config webpack.config.js --mode development",
"i18n": "gettext-extract -c gettext.js",
"i18n:json": "./bin/po2json"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.11.56",
"@types/react": "&17.0.2",
"@types/wordpress__blocks": "^11.0.7",
"@wordpress/block-editor": "^9.8.0",
"@wordpress/blocks": "^11.15.0",
"@wordpress/components": "^19.17.0",
"@wordpress/i18n": "^4.16.0",
"@wordpress/scripts": "^23.7.2",
"gettext-extract": "^2.0.1",
"mini-css-extract-plugin": "^2.6.1",
"po2json": "1.0.0-beta-3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.54.5",
"sass-loader": "^13.0.2",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"files": [
"config.php",
"variable.php",
"plugin.php",
"public",
"src",
"languages"
]
}