-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.71 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
{
"name": "kelpie",
"version": "0.1.0",
"description": "A block editor-friendly WordPress starter theme.",
"bugs": {
"url": " https://github.com/octopusthink/kelpie/issues"
},
"homepage": " https://github.com/octopusthink/kelpie#readme",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@wordpress/babel-preset-default": "^4.15.0",
"@wordpress/browserslist-config": "^2.6.0",
"@wordpress/dependency-extraction-webpack-plugin": "^2.7.0",
"@wordpress/eslint-plugin": "^4.1.0",
"autoprefixer": "^9.8.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"node-sass-glob-importer": "^5.3.2",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.32",
"postcss-focus-within": "^3.0.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"sass": "^1.26.8",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"stylelint": "^13.6.1",
"stylelint-config-sass-guidelines": "^7.0.0",
"stylelint-config-wordpress": "^16.0.0",
"stylelint-scss": "^3.18.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-livereload-plugin": "^2.3.0",
"webpack-rtl-plugin": "^2.0.0"
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"scripts": {
"build": "NODE_ENV=production webpack --mode production",
"lint": "npm run lint:js && npm run lint:styles && composer lint",
"lint:js": "npm run prettier",
"lint:styles": "npm run stylelint",
"prettier": "prettier .",
"prettier:fix": "prettier . --write",
"stylelint": "stylelint **/*.scss",
"stylelint:fix": "stylelint **/*.scss --fix",
"start": "npm run watch",
"watch": "webpack --mode development"
}
}