-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.7 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
78
79
80
81
{
"name": "wp-concerts",
"version": "0.1.3",
"description": "Concerts for WordPress.",
"scripts": {
"clean": "rm -rf build/*",
"watch": "NODE_ENV=development gulp watch",
"build": "NODE_ENV=production gulp",
"build-dev": "NODE_ENV=development gulp",
"lint": "npm run lint:php && npm run lint:js && npm run lint:scss",
"lint:php": "./vendor/bin/phpcs plugin includes templates",
"lint:js": "eslint --no-error-on-unmatched-pattern scripts blocks",
"lint:scss": "stylelint --allow-empty-input styles",
"pregettext": "npm run build-dev",
"gettext": "./vendor/bin/wp i18n make-pot build languages/wp-concerts.pot",
"postgettext": "for FILE in ./languages/*.po; do msgmerge --update $FILE languages/wp-concerts.pot; done"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ljo-hamburg/wp-concerts.git"
},
"keywords": [
"wordpress",
"music",
"orchestra",
"concert",
"event"
],
"author": "Kim Wittenburg <codello@wittenburg.kim> (https://github.com/codello)",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ljo-hamburg/wp-concerts/issues"
},
"homepage": "https://github.com/ljo-hamburg/wp-concerts",
"devDependencies": {
"@ljo-hamburg/gutenberg-image-selector": "^0.1.3",
"@wordpress/babel-preset-default": "^6.4.1",
"@wordpress/block-editor": "^8.0.13",
"@wordpress/blocks": "^11.1.5",
"@wordpress/browserslist-config": "^4.1.0",
"@wordpress/components": "^19.2.0",
"@wordpress/data": "^6.1.5",
"@wordpress/dependency-extraction-webpack-plugin": "^3.2.1",
"@wordpress/edit-post": "^3.15.1",
"@wordpress/i18n": "^4.2.4",
"@wordpress/plugins": "^4.0.7",
"@wordpress/server-side-render": "^1.20.9",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-ejs": "^5.1.0",
"gulp-exec": "^5.0.0",
"gulp-if": "^3.0.0",
"gulp-postcss": "^9.0.1",
"gulp-potomo": "^1.1.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^2.6.5",
"jquery": "^3.6.0",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-contenteditable": "^3.3.6",
"sass": "^1.47.0",
"stylelint": "^14.2.0",
"stylelint-config-rational-order": "^0.0.4",
"stylelint-config-sass-guidelines": "^9.0.1",
"vinyl-named": "^1.1.0",
"webpack": "^5.65.0",
"webpack-stream": "^7.0.0",
"yargs": "^17.3.1"
}
}