-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.85 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "askbugpro",
"version": "1.0.0",
"description": "AskBug Pro is a theme for question and answer community site based on AnsPress plugin. This theme can be used to create a big community site or a simple support site.",
"author": "Zen Projects",
"license": "GPL-3.0-or-later",
"keywords": [
"WordPress",
"Theme"
],
"homepage": "https://github.com/Zen-Projects/askbugpro#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Zen-Projects/askbugpro.git"
},
"bugs": {
"url": "https://github.com/Zen-Projects/askbugpro/issues"
},
"devDependencies": {
"@wordpress/scripts": "^25.0.0",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"css-minimizer-webpack-plugin": "^4.2.2",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^4.0.0",
"grunt-svgmin": "^7.0.0",
"grunt-webfonts": "^4.0.3",
"husky": "^8.0.2",
"ignore-emit-webpack-plugin": "^2.0.6",
"lint-staged": "^13.1.0",
"mini-css-extract-plugin": "^2.7.2",
"npx": "^10.2.2",
"postcss": "^8.4.20",
"postcss-loader": "^7.0.2",
"rtlcss-webpack-plugin": "^4.0.7",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"svgo": "^3.0.2",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"scripts": {
"lint:scss": "wp-scripts lint-style 'assets/scss/**/*.scss'",
"lint:js": "wp-scripts lint-js 'assets/js/*.js'",
"husky:install": "husky install",
"husky:setup": "npx husky add .husky/pre-commit \"npx lint-staged\"",
"start": "cross-env NODE_ENV=development webpack --watch",
"build": "cross-env NODE_ENV=production webpack"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.php": "composer lint:wpcs",
"*.scss": "wp-scripts lint-style",
"*.js": "wp-scripts lint-js"
}
}