-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
74 lines (74 loc) · 2.5 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
{
"name": "publisher-media-kit",
"version": "1.3.5",
"scripts": {
"start": "10up-toolkit start",
"watch": "10up-toolkit watch",
"build": "10up-toolkit build",
"format-js": "10up-toolkit format-js",
"lint-js": "10up-toolkit lint-js",
"lint-style": "10up-toolkit lint-style",
"test": "10up-toolkit test-unit-jest",
"wp-env": "wp-env",
"env:start": "wp-env start",
"env:stop": "wp-env stop",
"cypress:open": "cypress open --config-file tests/cypress/config.config.js",
"cypress:run": "cypress run --config-file tests/cypress/config.config.js --browser chrome",
"clean-dist": "rm -rf ./dist"
},
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"10up-toolkit": "^6.2.0",
"@10up/babel-preset-default": "^1.1.2",
"@10up/cypress-wp-utils": "^0.3.0",
"@10up/eslint-config": "^2.4.6",
"@babel/preset-react": "^7.17.12",
"@wordpress/env": "^10.1.0",
"@wordpress/eslint-plugin": "^17.5.0",
"@wordpress/scripts": "^27.3.0",
"cypress": "^13.3.1",
"cypress-file-upload": "^5.0.8",
"cypress-mochawesome-reporter": "^3.0.1",
"eslint": "^8.1.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^37.0.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^2.5.0",
"mochawesome-json-to-md": "^0.7.2",
"prettier": "^3.3.2",
"stylelint": "^14.0.0"
},
"dependencies": {
"@10up/component-tabs": "^2.0.1",
"@wordpress/blocks": "^11.9.0",
"@wordpress/hooks": "^3.10.0",
"@wordpress/i18n": "^4.10.0",
"@wordpress/icons": "^2.9.0",
"classnames": "^2.3.1",
"normalize.css": "^8.0.1",
"path": "^0.12.7",
"prop-types": "^15.8.1",
"react-autocomplete": "^1.8.1",
"react-sortable-hoc": "^2.0.0"
},
"10up-toolkit": {
"devURL": "https://publisher-media.test/",
"entry": {
"admin": "./assets/js/admin/admin.js",
"frontend": "./assets/js/frontend/frontend.js",
"shared": "./assets/js/shared/shared.js",
"admin-style": "./assets/css/admin/admin-style.css",
"shared-style": "./assets/css/shared/shared-style.css",
"style": "./assets/css/frontend/style.css",
"tabs-block": "./includes/blocks/block-editor/tabs/register.js",
"tabs-item-block": "./includes/blocks/block-editor/tabs-item/register.js"
}
}
}