-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.8 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
55
56
57
58
{
"name": "base-wp-theme",
"version": "1.0.0",
"description": "Skeleton WordPress theme to use as a base to build WordPress themes from scratch.",
"main": "build/js/index.js",
"scripts": {
"prod": "cross-env NODE_ENV=production webpack --mode production --progress",
"dev": "cross-env NODE_ENV=development webpack --watch --mode development --progress",
"lint": "eslint assets/js/*",
"lint:fix": "eslint --fix assets/js/*",
"lint-css": "stylelint **/*.scss",
"lint-css:fix": "stylelint **/*.scss --fix",
"build": "npm run lint-css:fix && npm run lint:fix && npm run prod"
},
"keywords": [
"wordpress",
"wordpress-theme",
"theme"
],
"author": "sarahcssiqueira",
"license": "GPLv2 or later",
"browserslist": [
"defaults"
],
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@wordpress/eslint-plugin": "^14.10.0",
"@wordpress/stylelint-config": "^21.20.0",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^3.0.0",
"sass-loader": "^13.3.2",
"stylelint": "^15.10.1",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-webpack-plugin": "^4.1.1",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"overrides": {
"@wordpress/stylelint-config": {
"stylelint": "^15.10.1"
}
}
}