-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.65 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.65 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
102
103
104
105
106
107
108
109
110
111
{
"name": "maxi-blocks",
"version": "1.0.0",
"main": "./build/index.js",
"scripts": {
"build": "wp-scripts build",
"format:js": "wp-scripts format-js",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"start": "wp-scripts start",
"packages-update": "wp-scripts packages-update",
"wp-env": "wp-env",
"test": "wp-scripts test-unit-jest",
"test:debug": "wp-scripts --inspect-brk test-unit-jest --runInBand --no-cache --verbose",
"test:e2e": "wp-scripts test-e2e -c ./e2e-tests/jest.config.js",
"test:e2e-interactive": "wp-scripts test-e2e -c ./e2e-tests/jest.config.js --puppeteer-interactive",
"test:e2e:debug": "wp-scripts --inspect-brk test-e2e -c ./e2e-tests/jest.config.js --runInBand --no-cache --verbose",
"test:e2e-interactive:debug": "wp-scripts --inspect-brk test-e2e -c ./e2e-tests/jest.config.js --runInBand --no-cache --verbose --puppeteer-interactive"
},
"dependencies": {
"@floating-ui/react-dom": "^1.2.1",
"@uiw/react-textarea-code-editor": "^2.0.3",
"@wordpress/block-editor": "^9.6.0",
"@wordpress/blocks": "^11.13.0",
"@wordpress/components": "^19.16.0",
"@wordpress/compose": "^5.12.0",
"@wordpress/data": "^6.14.0",
"@wordpress/editor": "^12.13.0",
"@wordpress/element": "^4.12.0",
"@wordpress/hooks": "^3.14.0",
"@wordpress/i18n": "^4.14.0",
"@wordpress/icons": "^9.5.0",
"@wordpress/primitives": "^3.12.0",
"@wordpress/rich-text": "^5.12.0",
"babel-eslint": "^10.1.0",
"babel-preset-react": "^6.24.1",
"bezier-easing-editor": "^0.8.0",
"caniuse-lite": "^1.0.30001491",
"classnames": "^2.3.1",
"crisp-sdk-web": "^1.0.15",
"css-to-react-native": "^3.0.0",
"deep-object-diff": "^1.1.9",
"dompurify": "^2.3.10",
"dotenv": "^16.0.1",
"html-react-parser": "^3.0.1",
"is-mobile": "^3.1.1",
"leaflet": "^1.8.0",
"masonry-layout": "^4.2.2",
"moment-parseformat": "^4.0.0",
"re-resizable": "^6.9.9",
"react-accessible-accordion": "^5.0.0",
"react-color": "^2.19.3",
"react-compound-slider": "^3.4.0",
"react-drag-listview": "^0.2.1",
"react-icons": "^4.4.0",
"react-iframe": "^1.8.0",
"react-image-crop": "^10.0.4",
"react-instantsearch": "^6.30.2",
"react-instantsearch-dom": "^6.30.2",
"react-lazy-load": "^3.1.14",
"react-leaflet": "^4.0.1",
"react-leaflet-google-layer": "^2.0.7",
"react-linear-gradient-picker": "^3.0.1",
"react-lorem-ipsum": "^1.4.10",
"react-paginate": "^8.1.3",
"react-select": "^5.4.0",
"react-spinners": "^0.13.8",
"react-tilt": "^0.1.4",
"tilt.js": "^1.2.1",
"tinycolor2": "^1.4.2",
"typesense-instantsearch-adapter": "^2.4.1",
"util": "^0.12.5",
"w3c-css-validator": "^1.3.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-spread": "^7.18.9",
"@prettier/plugin-php": "^0.18.9",
"@wordpress/base-styles": "^4.30.0",
"@wordpress/e2e-test-utils": "10.10.0",
"@wordpress/env": "^8.5.0",
"@wordpress/jest-preset-default": "^11.10.0",
"@wordpress/scripts": "^26.10.0",
"css-minimizer-webpack-plugin": "^4.0.0",
"enzyme": "^3.11.0",
"eslint": "^8.20.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest-canvas-mock": "^2.4.0",
"minify-css-string": "^1.0.0",
"prettier": "^2.7.1"
},
"browserslist": {
"production": [
"last 4 version"
]
},
"postcss": {
"map": false,
"plugins": {
"autoprefixer": {}
}
}
}