-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "vcwb-api-example-plugin",
"version": "1.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:VisualComposer/vcwb-api-example-plugin.git"
},
"author": "Janis K <janis.k@visualcomposer.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.19.6",
"@babel/node": "7.19.1",
"@babel/plugin-syntax-jsx": "7.18.6",
"@babel/preset-env": "7.19.4",
"@babel/preset-react": "7.18.6",
"@webpack-cli/generators": "^2.5.0",
"autoprefixer": "^10.4.12",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"postcss": "^8.4.18",
"postcss-loader": "^7.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"style-loader": "^3.3.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"description": "Visual Composer Website Builder API example plugin",
"scripts": {
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production",
"watch": "webpack --watch"
}
}