-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.12 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
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
{
"name": "react-wordpress-theme",
"version": "1.0.0",
"private": true,
"main": "bundle/blocks.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 --stats=minimal",
"packages-update": "wp-scripts packages-update"
},
"browser": {
"fs": false
},
"browserslist": [
"last 1 version",
"> 1%",
"IE 10"
],
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@automattic/isolated-block-editor": "^2.16.0",
"@types/sortablejs": "^1.13.0",
"@wordpress/api-fetch": "^6.19.0",
"@wordpress/block-editor": "^10.5.0",
"@wordpress/blocks": "^11.21.0",
"@wordpress/components": "^22.1.0",
"@wordpress/compose": "^5.20.0",
"@wordpress/core-data": "^5.5.0",
"@wordpress/data": "^7.6.0",
"@wordpress/dom-ready": "^3.22.0",
"@wordpress/edit-site": "^4.19.0",
"@wordpress/editor": "^12.21.0",
"@wordpress/element": "^4.20.0",
"@wordpress/eslint-plugin": "^13.6.0",
"@wordpress/hooks": "^3.22.0",
"@wordpress/i18n": "^4.22.0",
"@wordpress/icons": "^9.13.0",
"@wordpress/notices": "^3.22.0",
"@wordpress/primitives": "^3.20.0",
"@wordpress/scripts": "^24.6.0",
"array-move": "^4.0.0",
"babel-plugin-styled-components": "^2.0.7",
"clean-webpack-plugin": "^3.0.0",
"crypto-js": "^4.1.1",
"eslint": "^8.11.0",
"eslint-plugin-jest": "^26.1.1",
"glob": "^8.0.3",
"import-glob-loader": "^1.1.0",
"jest": "^27.5.1",
"lodash": "^4.17.21",
"postcss": "^8.4.13",
"prettier": "^2.6.0",
"react-sortable-hoc": "^2.0.0",
"swiper": "8.3.2",
"toml": "^3.0.0",
"uuid": "^8.3.2"
},
"dependencies": {
"@emotion/styled": "^11.10.4",
"autoprefixer": "^10.4.7",
"axios": "^0.21.1",
"classnames": "^2.3.1",
"fs": "^0.0.1-security",
"inputmask": "^5.0.7",
"js-cookie": "^3.0.1",
"lightbox2": "^2.11.3",
"prop-types": "^15.8.1",
"query-string": "^7.0.0",
"react": "^18.2.0",
"react-grid-layout": "^1.3.4",
"react-image": "^4.0.3",
"react-sortable": "^2.0.0",
"react-sortablejs": "^6.1.4",
"simplebar": "^5.3.8",
"sortablejs": "^1.15.0",
"sprintf-js": "^1.1.2",
"sweetalert2": "^11.4.29",
"viewerjs": "^1.10.0"
},
"babel": {
"presets": [
[
"@wordpress/babel-preset-default",
{
"targets": {
"node": "16",
"browsers": "extends @wordpress/browserslist-config"
}
}
]
],
"plugins": [
"@babel/plugin-proposal-async-generator-functions",
"@babel/plugin-proposal-optional-chaining"
]
}
}