-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.88 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.88 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@tangible/fields",
"description": "React library for form field types",
"version": "2026.3.16",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/TangibleInc/fields"
},
"homepage": "https://github.com/tangibleinc/fields#readme",
"tangible": {
"deployType": "module"
},
"main": "index.js",
"author": "Team Tangible",
"license": "MIT",
"scripts": {
"start": "wp-env start",
"start:update": "wp-env start --update",
"stop": "wp-env stop",
"dev": "roll dev",
"build": "roll build",
"build:npm": "node build.js npm",
"version": "node version.js",
"format": "roll format",
"postinstall": "roll install",
"update": "roll update",
"install:dev": "roll install --dev",
"update:dev": "roll update --dev",
"archive": "roll archive -y",
"jest:test": "jest --config=tests/jest/jest.config.js --silent=false test",
"-- Local environment --": "https://developer.wordpress.org/block-editor/reference-guides/packages/packages-env",
"env": "wp-env",
"composer": "FOLDER=`basename $(realpath $PWD)`; wp-env run cli --env-cwd=wp-content/plugins/$FOLDER composer",
"composer:install": "wp-env run cli sudo apk add git && npm run composer install",
"composer:update": "npm run composer update",
"test": "FOLDER=`basename $(realpath $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",
"test:7.4": "WP_ENV_PHP_VERSION=7.4 wp-env start && npm run test",
"test:8.2": "WP_ENV_PHP_VERSION=8.2 wp-env start && npm run test",
"test:all": "npm run test:7.4 && npm run test:8.2 && npm run e2e",
"env:destroy": "wp-env destroy",
"env:clean": "wp-env clean all",
"-- End-to-end testing --": "https://playwright.dev/",
"e2e": "playwright test --config playwright.config.js --reporter=list",
"e2e:install": "playwright install chromium",
"e2e:debug": "npm run e2e -- --debug",
"e2e:ui": "npm run e2e -- --ui",
"e2e:watch": "chokidar 'tests/e2e/**/*.js' --initial -c 'npm run e2e -- --retries=0'",
"-- Storybook --": "https://storybook.js.org",
"storybook": "storybook dev",
"storybook:build": "storybook build"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.6",
"@codemirror/basic-setup": "^0.20.0",
"@codemirror/commands": "^6.8.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/language": "^6.11.0",
"@codemirror/search": "^6.5.10",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.36.5",
"@react-aria/color": "^3.0.6",
"baseline-browser-mapping": "^2.10.8",
"mime-types": "^3.0.2",
"prosemirror-example-setup": "^1.2.3",
"prosemirror-menu": "^1.2.4",
"prosemirror-model": "^1.25.0",
"prosemirror-schema-basic": "^1.2.4",
"prosemirror-schema-list": "^1.5.1",
"prosemirror-state": "^1.4.3",
"prosemirror-view": "^1.39.1",
"react-aria": "^3.39.0",
"react-stately": "^3.37.0"
},
"devDependencies": {
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@playwright/test": "^1.52.0",
"@storybook/addon-docs": "^9.0.5",
"@storybook/addon-onboarding": "^9.0.5",
"@storybook/builder-vite": "^9.0.17",
"@storybook/react-vite": "^9.0.17",
"@tangible/roller": "^2.1.7",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@wordpress/e2e-test-utils-playwright": "^1.22.0",
"@wordpress/env": "^10.22.0",
"babel-jest": "^29.7.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.1.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prop-types": "^15.8.1",
"react-test-renderer": "^19.1.0",
"rollup-plugin-visualizer": "^5.14.0",
"sass": "1.86.3",
"storybook": "^9.0.5",
"testra": "^2.1.5"
}
}