-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
54 lines (54 loc) · 1.66 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
{
"name": "blank-theme",
"version": "2.0.0",
"description": "Blank Theme Packages",
"author": "rtCamp",
"license": "MIT",
"private": true,
"scripts": {
"prod": "NODE_ENV=production webpack --progress && npm run pot",
"dev": "webpack --watch --progress",
"clean": "rm -rf assets/build/*",
"init": "./bin/init.js && npm run pot",
"lint:css": "stylelint assets/src/sass/**/*.scss --syntax scss",
"lint:js": "eslint assets/src/js/",
"lint:php": "./vendor/bin/phpcs",
"lint:php:fix": "./bin/phpcbf.sh",
"lint:staged": "lint-staged",
"pot": "wp-pot --src './**/*.php' --dest-file './languages/blank-theme.pot' --domain 'blank-theme' --package 'Blank Theme' ",
"precommit": "npm-run-all lint:* pot",
"prepare": "husky install && npm run init"
},
"dependencies": {
"foundation-sites": "^6.6.3",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@wordpress/babel-preset-default": "^6.2.0",
"@wordpress/browserslist-config": "^4.0.1",
"@wordpress/dependency-extraction-webpack-plugin": "^3.1.4",
"@wordpress/eslint-plugin": "^9.0.6",
"@wordpress/stylelint-config": "^19.0.5",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.6",
"eslint": "^7.27.0",
"eslint-webpack-plugin": "^2.5.4",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"mini-css-extract-plugin": "^1.6.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.0",
"postcss-loader": "^5.3.0",
"postcss-preset-env": "^6.7.0",
"sass": "^1.34.0",
"sass-loader": "^12.0.0",
"stylelint": "^13.13.1",
"stylelint-webpack-plugin": "^2.1.1",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"wp-pot-cli": "^1.5.0"
},
"browserslist": [
"extends @wordpress/browserslist-config"
]
}