-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
20 lines (20 loc) · 880 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "wc-google-map",
"version": "1.0.1",
"main": "index.js",
"repository": "https://github.com/codearryaas/wc-google-map.git",
"author": "kodeninja <codearryaas@gmail.com>",
"license": "MIT",
"scripts": {
"dev:blocks": "wp-scripts start --webpack-copy-php --webpack-src-dir=src/blocks --output-path=dist/blocks",
"build:blocks": "wp-scripts build --webpack-copy-php --webpack-src-dir=src/blocks --output-path=dist/blocks",
"dev:non-blocks": "wp-scripts start --webpack-copy-php --config ./webpack-config.js",
"build:non-blocks": "wp-scripts build --webpack-copy-php --config ./webpack-config.js",
"dev": "concurrently \"yarn dev:blocks\" \"yarn dev:non-blocks\"",
"build": "concurrently \"yarn build:blocks\" \"yarn build:non-blocks\""
},
"devDependencies": {
"@wordpress/scripts": "^27.3.0",
"concurrently": "^8.2.2"
}
}