-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.01 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.01 KB
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
{
"name": "@wellmann/wp-react-admin-page-example",
"version": "0.1.0",
"description": "WordPress admin page developed with React and Gutenberg components.",
"scripts": {
"start": "npm run watch",
"watch": "npm run build -- --watch",
"build": "node ./bin/build.mjs",
"cs:check": "prettier . --check",
"cs:fix": "prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wellmann/wp-react-admin-page-example.git"
},
"author": {
"name": "Kevin Wellmann",
"url": "http://kevin.wellmann.io"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/wellmann/wp-react-admin-page-example/issues"
},
"homepage": "https://github.com/wellmann/wp-react-admin-page-example#readme",
"devDependencies": {
"@wordpress/api-fetch": "^7.13.0",
"@wordpress/components": "^28.13.0",
"@wordpress/element": "^6.13.0",
"@wordpress/i18n": "^5.13.0",
"esbuild": "^0.23.1",
"esbuild-plugin-svgr": "^3.1.0",
"prettier": "3.4.2"
}
}