-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.51 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.51 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
{
"name": "vcwb",
"version": "dev",
"license": "SEE LICENSE IN <https://visualcomposer.com/terms-of-use/>",
"description": "Visual Composer Website Builder",
"main": "index.php",
"repository": {
"type": "git",
"url": "git@github.com:Visualcomposer/builder.git"
},
"scripts": {
"standard": "standard --version && standard",
"build": "webpack --version && webpack --config=./node_modules/vc-webpack-vendors/webpack.config.js",
"build-production": "webpack --version && webpack --config=./node_modules/vc-webpack-vendors/webpack.config.production.js",
"watch": "webpack --version && webpack --config=./node_modules/vc-webpack-vendors/webpack.config.js --watch"
},
"devDependencies": {
"vc-webpack-vendors": "3.3.3"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-transform-runtime",
"@babel/plugin-proposal-class-properties"
]
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"public/dist/",
"tests/",
"**/public/js"
],
"rules": {
"jsx-quotes": [
2,
"prefer-single"
],
"import/no-webpack-loader-syntax": "off"
}
},
"resolutions": {
"core-js": "3.25.5",
"postcss": "8.4.18",
"css-loader": "6.7.1",
"color-name": "1.1.4",
"eslint": "8.25.0",
"less": "4.1.3",
"raw-loader": "1.0.0",
"@babel/runtime": "7.19.4"
},
"browserslist": [
">1%",
"ios_saf 8",
"ie 10",
"ie 11"
]
}