forked from GatherPress/gatherpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.22 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
82
83
84
85
86
87
88
{
"name": "gatherpress",
"version": "0.30.0-alpha",
"description": "Powering Communities with WordPress",
"main": "index.js",
"scripts": {
"build": "wp-scripts build",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format": "wp-scripts format",
"i18n:pot": " wp i18n make-pot . --exclude=node_modules,vendor",
"i18n:json": "wp i18n make-json languages --no-purge",
"i18n:php": "wp i18n make-php languages",
"lint:css": "wp-scripts lint-style",
"lint:css:fix": "wp-scripts lint-style --fix",
"lint:js": "wp-scripts lint-js",
"lint:js:fix": "wp-scripts lint-js --fix",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:md:js": "wp-scripts lint-md-js",
"lint:php": "vendor/bin/phpcs --standard=phpcs.ruleset.xml --extensions=php --colors -s -p -v .",
"lint:php:fix": "vendor/bin/phpcbf --standard=phpcs.ruleset.xml -p -v .",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start": "wp-scripts start",
"test:e2e": "playwright test --config=playwright.config.js",
"test:unit:js": "wp-scripts test-unit-js --coverage --testResultsProcessor=jest-sonar-reporter",
"pretest:unit:php": "wp-env start --xdebug",
"test:unit:php": "wp-env run tests-wordpress php -dxdebug.mode=coverage /var/www/html/wp-content/plugins/gatherpress/vendor/bin/phpunit -c /var/www/html/wp-content/plugins/gatherpress/phpunit.xml.dist --coverage-clover=coverage.xml --coverage-html=build/coverage-report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GatherPress/gatherpress.git"
},
"keywords": [
"dates",
"events"
],
"author": "",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/GatherPress/gatherpress/issues"
},
"homepage": "https://github.com/GatherPress/gatherpress#readme",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@playwright/test": "^1.45.3",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@wordpress/api-fetch": "^7.4.0",
"@wordpress/block-editor": "^13.4.0",
"@wordpress/blocks": "^13.4.0",
"@wordpress/components": "^28.4.0",
"@wordpress/compose": "^7.4.0",
"@wordpress/core-data": "^7.4.0",
"@wordpress/data": "^10.4.0",
"@wordpress/date": "^5.4.0",
"@wordpress/dom-ready": "^4.4.0",
"@wordpress/edit-post": "^8.4.0",
"@wordpress/element": "^6.4.0",
"@wordpress/eslint-plugin": "^20.1.0",
"@wordpress/i18n": "^5.4.0",
"@wordpress/notices": "^5.4.0",
"@wordpress/plugins": "^7.4.0",
"@wordpress/scripts": "^28.4.0",
"classnames": "^2.5.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react-hooks": "^4.6.2",
"html-react-parser": "^5.1.12",
"jest-sonar-reporter": "^2.0.0",
"leaflet": "^1.9.4",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"moment-timezone": "^0.5.45",
"playwright": "^1.45.3",
"react-modal": "^3.16.1",
"react-tooltip": "^5.27.1",
"stylelint": "^16.7.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-scss": "^6.4.1"
}
}