-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "webpacktmp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack serve --open --config ./build/webpack.dev.config.js",
"build": "webpack --config ./build/webpack.build.config.js",
"lint": "eslint \"src/**/*.js\""
},
"browserslist": [
"> 1%",
"last 3 version",
"IE >= 11"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.16.11",
"autoprefixer": "^10.4.4",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"css-mqpacker": "^7.0.0",
"cssnano": "^5.1.7",
"eslint": "^8.13.0",
"eslint-config-xbsoftware": "git+https://bitbucket.org/xbsltd/eslint.git#v4.0.0",
"eslint-plugin-import": "^2.26.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"mini-css-extract-plugin": "^2.6.0",
"node-sass": "^7.0.1",
"path": "^0.12.7",
"postcss-loader": "^6.2.1",
"remove-files-webpack-plugin": "^1.5.0",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"script-loader": "^0.7.2"
}
}