-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 2.69 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "wpsteak-plugin",
"engines": {
"node": ">=10.15.0"
},
"scripts": {
"internal:pipeline": "webpack --colors",
"dev": "cross-env NODE_ENV=development npm run internal:pipeline --color=always -- --config resources/build/webpack.development.js",
"build": "cross-env NODE_ENV=production npm run internal:pipeline --color=always -- --config resources/build/webpack.production.js",
"lint": "run-s -cl lint:scripts lint:styles",
"lint-fix": "run-s -cl lint-fix:scripts lint-fix:styles",
"lint:scripts": "eslint --color ./resources/scripts/**",
"lint:styles": "stylelint --color ./resources/styles/**",
"lint-fix:scripts": "eslint --color --fix ./resources/scripts/**",
"lint-fix:styles": "stylelint --color --fix ./resources/styles/**",
"i18n": "run-s -cl i18n:textdomain i18n:pot",
"i18n:textdomain": "wpi18n addtextdomain --exclude=dist,node_modules,resources,tests,vendor",
"i18n:pot": "wpi18n makepot --exclude=dist,node_modules,resources,tests,vendor"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@babel/core": "7.10.4",
"@babel/preset-env": "7.10.4",
"airbnb-browser-shims": "3.3.0",
"autoprefixer": "^10.2.5",
"babel-loader": "8.1.0",
"clean-webpack-plugin": "3.0.0",
"cross-env": "7.0.2",
"css-loader": "^5.2.6",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "6.0.0",
"imagemin-mozjpeg": "9.0.0",
"imagemin-webpack-plugin": "2.4.2",
"import-glob": "1.5.0",
"loader-utils": "2.0.0",
"node-sass": "4.14.1",
"npm-run-all": "4.1.5",
"postcss-loader": "^5.3.0",
"sass-loader": "9.0.0",
"style-loader": "1.2.1",
"webpack": "4.43.0",
"webpack-cli": "3.3.12",
"webpack-manifest-plugin": "2.2.0",
"webpack-spritesmith": "1.1.0"
},
"devDependencies": {
"@babel/preset-react": "7.10.4",
"@commitlint/cli": "^13.0.0",
"@commitlint/config-conventional": "^13.0.0",
"@wordpress/eslint-plugin": "7.1.0",
"browser-sync": "^2.26.14",
"browser-sync-webpack-plugin": "2.2.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.2.0",
"eslint": "7.3.1",
"eslint-config-airbnb": "18.2.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.3",
"husky": "4.2.5",
"node-wp-i18n": "1.2.3",
"stylelint": "^13.13.1",
"stylelint-config-recommended-scss": "4.2.0",
"stylelint-order": "4.1.0",
"stylelint-scss": "3.18.0"
}
}