-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.59 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.59 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
35
36
37
38
39
40
41
42
43
{
"name": "wp-react-plugin-boilerplate",
"version": "1.0.0",
"description": "WP React Plugin Boilerplate - WordPress Setting via React and Rest API",
"author": "codersantosh",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"build:admin": "wp-scripts build --webpack-src-dir=src/admin --output-path=build/admin",
"build:public": "wp-scripts build --webpack-src-dir=src/public --output-path=build/public",
"build": "npm-run-all build:admin build:public",
"start:admin": "wp-scripts start --webpack-src-dir=src/admin --output-path=build/admin",
"start:public": "wp-scripts start --webpack-src-dir=src/public --output-path=build/public",
"start": "npm-run-all --parallel start:admin start:public",
"packages-update": "wp-scripts packages-update",
"makejsstring": "node .bin/make-string.js",
"makepot": "wp i18n make-pot . languages/wp-react-plugin-boilerplate.pot --skip-js --exclude=src,vendor,node_modules --merge=languages/js.pot",
"copy": "node .bin/copy.js",
"replaceAtrc": "node .bin/replace-atrc.js",
"deploy": "npm-run-all build replaceAtrc makepot copy",
"initial-rename": "node .bin/initial-rename.js"
},
"devDependencies": {
"@wordpress/babel-plugin-makepot": "^6.19.0",
"@wordpress/scripts": "^30.12.0",
"autoprefixer": "^10.4.7",
"ncp": "^2.0.0",
"npm-run-all": "^4.1.5",
"replace-in-file": "^7.2.0"
},
"dependencies": {
"@wordpress/components": "^29.5.0",
"@wordpress/url": "^4.19.0",
"atrc": "^1.0.35",
"classnames": "^2.5.1",
"lodash": "^4.17.21",
"react-router-dom": "^6.3.0"
},
"browserslist": [
"last 3 versions",
"> 1%"
]
}