-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 2.21 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 2.21 KB
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
{
"name": "pressprimer-quiz",
"version": "2.2.0",
"description": "Enterprise-grade quiz and assessment platform for WordPress educators",
"scripts": {
"build": "wp-scripts build",
"start": "wp-scripts start",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"format": "wp-scripts format",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts build && cd /Users/Ryan/Development/wordpress-plugins/pressprimer/pressprimer-quiz && /Applications/Local.app/Contents/Resources/extraResources/lightning-services/php-8.2.27+1/bin/darwin-arm64/bin/php composer.phar install --no-dev --optimize-autoloader && rm -rf dist && mkdir -p dist/pressprimer-quiz && rsync -av --exclude-from='.distignore' ./ dist/pressprimer-quiz/ && cd dist && zip -r pressprimer-quiz.zip pressprimer-quiz && rm -rf pressprimer-quiz && cd /Users/Ryan/Development/wordpress-plugins/pressprimer/pressprimer-quiz && /Applications/Local.app/Contents/Resources/extraResources/lightning-services/php-8.2.27+1/bin/darwin-arm64/bin/php composer.phar install && echo 'Created dist/pressprimer-quiz.zip'",
"test:e2e": "playwright test",
"test:e2e:php74": "playwright test --project=php74",
"test:e2e:php84": "playwright test --project=php84",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:record": "playwright codegen",
"test:e2e:record:php74": "playwright codegen http://clean-74.local/wp-admin/",
"test:e2e:record:php84": "playwright codegen http://clean-84.local/wp-admin/",
"test:e2e:report": "playwright show-report"
},
"devDependencies": {
"@playwright/test": "^1.48.0",
"@wordpress/scripts": "^27.0.0"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@wordpress/api-fetch": "^7.0.0",
"@wordpress/components": "^27.0.0",
"@wordpress/element": "^6.0.0",
"@wordpress/i18n": "^5.0.0",
"antd": "^5.12.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"recharts": "^3.5.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}