-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
66 lines (66 loc) · 2.18 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
{
"name": "wp-post-series",
"title": "WP Post Series",
"homepage": "https://wordpress.org/plugins/wp-post-series",
"description": "Lets you setup a simple series of posts using taxonomies. Posts within a series will show an information box above the content automatically with links to other posts in the series and a description.",
"author": "Mike Jolley",
"license": "GPL-3.0-or-later",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mikejolley/wp-post-series.git"
},
"bugs": {
"url": "https://github.com/mikejolley/wp-post-series/issues"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-async-generator-functions": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@wordpress/babel-preset-default": "^4.19.0",
"@wordpress/browserslist-config": "^2.7.0",
"@wordpress/dependency-extraction-webpack-plugin": "^2.8.0",
"@wordpress/eslint-plugin": "^7.3.0",
"babel-loader": "^8.1.0",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"browserslist": "^4.14.5",
"css-loader": "^4.3.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-jest": "23.19.0",
"eslint-plugin-react-hooks": "4.0.0",
"mini-css-extract-plugin": "^0.11.3",
"postcss": "^8.1.1",
"postcss-loader": "^4.0.3",
"prettier": "npm:[email protected]",
"rimraf": "^3.0.2",
"sass": "^1.26.12",
"sass-loader": "^10.0.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"scripts": {
"watch": "rimraf build/* && webpack --mode=development --watch --config webpack.config.js",
"build": "rimraf build/* && webpack --mode=production --config webpack.config.js"
},
"dependencies": {
"@wordpress/blocks": "^6.23.0",
"@wordpress/i18n": "^3.16.0",
"@wordpress/icons": "^2.7.0",
"classnames": "^2.2.6"
}
}