forked from beezwax/WP-Publish-to-Apple-News
-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
48 lines (48 loc) · 1.63 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
{
"name": "publish-to-apple-news",
"version": "2.5.1",
"license": "GPLv3",
"main": "index.php",
"engines": {
"node": "^20.x.x",
"npm": "^10.x.x"
},
"browserslist": [
"defaults",
"not IE 11"
],
"scripts": {
"preinstall": "npx check-node-version --package",
"build": "npx check-node-version --package && webpack --mode=production",
"dev": "npx check-node-version --package && webpack --mode=development --watch",
"lint": "npx check-node-version --package && eslint --ext .jsx --ext .js .",
"lint:fix": "npx check-node-version --package && eslint --ext .jsx --ext .js . --fix",
"scaffold": "scaffold dir ./scaffold --theme=./",
"test": "npx check-node-version --package && jest",
"test:watch": "npx check-node-version --package && jest --watch",
"prerelease": "check-node-version --package",
"release": "npx @alleyinteractive/create-release@latest"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"babel-plugin-styled-components": "^2.1.4",
"eslint-config-airbnb": "^19.0.4"
},
"dependencies": {
"@alleyinteractive/block-editor-tools": "^0.6.1",
"@wordpress/api-fetch": "^6.48.1",
"@wordpress/components": "^26.0.6",
"@wordpress/data": "^9.21.1",
"@wordpress/dependency-extraction-webpack-plugin": "^5.2.1",
"@wordpress/edit-post": "^7.28.10",
"@wordpress/i18n": "^4.51.1",
"@wordpress/plugins": "^6.19.6",
"@wordpress/scripts": "^27.2.5",
"dompurify": "^3.0.8",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}