-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.55 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.55 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
{
"name": "d5-clipboard-extension",
"version": "1.0.0",
"description": "D5 Tutorial for module conversion from Divi 4 to Divi 5",
"main": "src/index.jsx",
"author": "Elegant Themes",
"license": "GPL2",
"private": false,
"dependencies": {
"@wordpress/hooks": "^3.57.0"
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@divi/types": "npm:divi-types@^1.0.10",
"@types/divi__app-ui": "npm:divi-types-app-ui@^1.0.10",
"@types/divi__data": "npm:divi-types-data@^1.0.10",
"@types/divi__error-boundary": "npm:divi-types-error-boundary@^1.0.10",
"@types/divi__icon-library": "npm:divi-types-icon-library@^1.0.10",
"@types/divi__modal": "npm:divi-types-modal@^1.0.10",
"@types/divi__modal-library": "npm:divi-types-modal-library@^1.0.10",
"@types/lodash": "^4.17.1",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@types/wordpress__i18n": "^3.11.0",
"@wordpress/hooks": "^3.57.0",
"@wordpress/i18n": "^4.57.0",
"@wordpress/scripts": "^30.10.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.1",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.9.0",
"react": "^18.2.0",
"sass": "^1.77.0",
"sass-loader": "^14.2.1",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"scripts": {
"start": "NODE_ENV=development webpack -w --config webpack.config.js --progress",
"build": "NODE_ENV=production webpack --config webpack.config.js --progress"
}
}