-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.81 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
{
"name": "tangible-fields",
"description": "",
"version": "2025.01.07",
"type": "module",
"tangible": {
"deployType": "module"
},
"scripts": {
"dev": "roll dev",
"build": "roll build",
"format": "roll format",
"archive": "roll archive",
"start": "concurrently --raw 'roll dev' 'wp-now start --blueprint=blueprint.dev.json'",
"postinstall": "roll install",
"install:dev": "roll install --dev",
"update": "roll update",
"update:dev": "roll update --dev",
"version": "node version.js",
"jest:test": "jest --config=tests/jest/jest.config.js --silent=false --maxWorkers=1 test",
"-- Local environment --": "https://developer.wordpress.org/block-editor/reference-guides/packages/packages-env",
"env": "wp-env",
"env:start": "wp-env start",
"env:test": "FOLDER=`basename $PWD`; wp-env run tests-wordpress /var/www/html/wp-content/plugins/$FOLDER/vendor/bin/phpunit --testdox -c /var/www/html/wp-content/plugins/$FOLDER/phpunit.xml --verbose",
"env:test:7.4": "WP_ENV_PHP_VERSION=7.4 wp-env start && npm run env:test",
"env:test:8.2": "WP_ENV_PHP_VERSION=8.2 wp-env start && npm run env:test",
"env:stop": "wp-env stop",
"env:destroy": "wp-env destroy",
"env:clean": "wp-env clean all",
"-- End-to-end testing --": "https://playwright.dev/",
"e2e": "playwright test --config tests/e2e/playwright.config.js",
"e2e:install": "playwright install chromium",
"e2e:debug": "npm run e2e -- --debug",
"e2e:ui": "npm run e2e -- --ui"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.1",
"@codemirror/basic-setup": "^0.20.0",
"@codemirror/commands": "^6.7.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/language": "^6.10.3",
"@codemirror/search": "^6.5.6",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.34.1",
"@react-aria/color": "^3.0.1",
"prosemirror-example-setup": "^1.2.3",
"prosemirror-menu": "^1.2.4",
"prosemirror-model": "^1.23.0",
"prosemirror-schema-basic": "^1.2.3",
"prosemirror-schema-list": "^1.4.1",
"prosemirror-state": "^1.4.3",
"prosemirror-view": "^1.34.3",
"react-aria": "^3.35.1",
"react-stately": "^3.33.0"
},
"devDependencies": {
"@babel/preset-env": "^7.25.9",
"@babel/preset-react": "^7.25.9",
"@playwright/test": "^1.48.1",
"@tangible/now": "^1.1.3",
"@tangible/roller": "^2.1.4",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@wordpress/e2e-test-utils-playwright": "^1.10.0",
"@wordpress/env": "^10.10.0",
"babel-jest": "^29.7.0",
"concurrently": "^9.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react-test-renderer": "^18.3.1",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "1.80.4"
}
}