-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.62 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
{
"name": "arkhe-theme",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"wp-env": "wp-env",
"wp-start": "wp-env start && opener http://localhost:8888",
"wp-stop": "wp-env run cli wp db export sql/local.sql && wp-env stop",
"wp-inport": "wp-env run cli wp db inport",
"build": "run-s build:js build:css",
"build:css": "node sass-builder.js",
"build:js": "run-s build:js:front build:js:admin build:js:guten",
"build:js:front": "cross-env TYPE=front npx webpack",
"build:js:admin": "cross-env TYPE=admin npx webpack",
"build:js:guten": "cross-env TYPE=guten npx webpack",
"watch:css": "nodemon --watch src -e scss -x \"npm run build:css\"",
"watch:js": "nodemon --watch src/js --ignore **/plugin/** --ignore **/admin/** -e js -x \"npm run build:js\"",
"update": "bash ./bin/zip.sh",
"packages-update": "wp-scripts packages-update",
"postpackages-update": "npm run build",
"rm:ds_store": "find . -name '.DS_Store' -type f -ls -delete"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@wordpress/browserslist-config": "^5.13.0",
"@wordpress/env": "^5.15.0",
"@wordpress/scripts": "^26.1.0",
"@wordpress/stylelint-config": "^21.13.0",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"css-mqpacker": "^7.0.0",
"cssnano": "^6.0.0",
"lazysizes": "^5.3.2",
"luminous-lightbox": "^2.4.0",
"node-sass": "^8.0.0",
"node-sass-glob-importer": "^5.3.3",
"nodemon": "^2.0.22",
"npm-check-updates": "^16.9.0",
"npm-run-all": "^4.1.5",
"po2json": "^1.0.0-beta-2",
"stylelint": "14.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-scss": "^5.0.1"
}
}