forked from GatherPress/gatherpress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 3.03 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": "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:css:src": "wp-scripts lint-style 'src/**/*.scss'",
"lint:css:src:fix": "wp-scripts lint-style 'src/**/*.scss' --fix",
"lint:js": "wp-scripts lint-js",
"lint:js:fix": "wp-scripts lint-js --fix",
"lint:js:src": "wp-scripts lint-js 'src/**/*.js'",
"lint:js:src:fix": "wp-scripts lint-js 'src/**/*.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: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.42.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@wordpress/api-fetch": "^6.50.0",
"@wordpress/block-editor": "^12.21.0",
"@wordpress/blocks": "^12.30.0",
"@wordpress/components": "^27.1.0",
"@wordpress/compose": "^6.30.0",
"@wordpress/core-data": "^6.30.0",
"@wordpress/data": "^9.23.0",
"@wordpress/date": "^4.53.0",
"@wordpress/dom-ready": "^3.53.0",
"@wordpress/edit-post": "^7.30.0",
"@wordpress/element": "^5.30.0",
"@wordpress/eslint-plugin": "^17.10.0",
"@wordpress/i18n": "^4.53.0",
"@wordpress/notices": "^4.21.0",
"@wordpress/plugins": "^6.21.0",
"@wordpress/scripts": "^27.4.0",
"classnames": "^2.5.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"html-react-parser": "^5.1.9",
"jest-sonar-reporter": "^2.0.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"moment-timezone": "^0.5.45",
"playwright": "^1.42.1",
"react-modal": "^3.16.1",
"react-tooltip": "^5.26.3"
}
}