-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.46 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
{
"name": "perfectwp-wc-omnibus",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "webpack --watch --config ./webpack/webpack.config.dev.js --env NODE_ENV=dev --mode development",
"dev": "webpack --config ./webpack/webpack.config.dev.js --env NODE_ENV=production --mode development",
"prod": "webpack --config ./webpack/webpack.config.prod.js --env NODE_ENV=production --mode production"
},
"engines": {
"node": ">= 13.0.0"
},
"author": "slawek@automa.net",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-arrow-functions": "^7.20.7",
"@babel/plugin-transform-classes": "^7.20.7",
"@babel/plugin-transform-object-assign": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/lodash": "^4.14.191",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"autoprefixer": "^10.4.13",
"babel-eslint": "^10.0.2",
"babel-loader": "^9.1.2",
"bootstrap": "^5.2.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"delegate": "^3.2.0",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^6.2.0",
"image-webpack-loader": "^8.1.0",
"js-md5": "^0.7.3",
"load-script": "^2.0.0",
"mini-css-extract-plugin": "^2.7.2",
"node-sass": "^8.0.0",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"postcss-loader": "^7.0.2",
"sass-loader": "^13.2.0",
"stylelint": "^14.16.1",
"stylelint-config-recommended-scss": "^8.0.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-scss": "^4.3.0",
"stylelint-webpack-plugin": "^3.3.0",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.75.0",
"webpack-build-notifier": "^2.3.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"axios": "^1.2.2",
"core-js": "^3.27.1",
"eslint-webpack-plugin": "^3.2.0",
"events": "^3.3.0",
"i18next": "^22.4.9",
"underscore": "^1.13.6"
},
"browserslist": [
"last 2 versions",
"> 1%",
"safari 8",
"ie 10"
]
}