-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 909 Bytes
/
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
{
"version": "1.0.0",
"scripts": {
"watch": "npm run clean && npm run watch:js",
"build": "npm run clean && npm run build:js",
"clean": "rimraf ./build/*",
"build:js": "npm run clean && npx wp-scripts build editor=./assets/js/editor frontend=./assets/js/frontend",
"watch:js": "npm run clean && npm run build:js -- --watch",
"env:start": "npx wp-env start",
"env:stop": "npx wp-env stop"
},
"dependencies": {
"@wordpress/dom-ready": "^3.40.0"
},
"devDependencies": {
"@wordpress/env": "^7.0.0",
"@wordpress/prettier-config": "^2.16.0",
"@wordpress/scripts": "^26.4.0",
"postcss-import": "^15.1.0",
"postcss-import-ext-glob": "^2.1.1",
"postcss-nested": "^6.0.1",
"rimraf": "^5.0.1"
},
"prettier": "@wordpress/prettier-config",
"postcss": {
"plugins": {
"postcss-import-ext-glob": {},
"postcss-import": {},
"postcss-nested": {},
"autoprefixer": {}
}
}
}