-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.22 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.22 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
62
63
64
65
66
67
68
69
70
71
{
"name": "webpack-test",
"version": "1.0.0",
"description": "webpack test boilerplate",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve --mode development",
"watch": "cross-env NODE_ENV=development webpack --mode development --watch",
"dev": "cross-env NODE_ENV=development webpack --mode development",
"build": "cross-env NODE_ENV=production webpack --mode production",
"stats": "webpack --profile --json > stats.json && webpack-bundle-analyzer stats.json"
},
"keywords": [
"js",
"javascrpit",
"webpack"
],
"author": "Fedor Iskandarov",
"license": "ISC",
"browserslist": "> 0.25%, not dead",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@babel/runtime-corejs3": "^7.12.5",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-lodash": "^3.3.4",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"core-js": "^3.8.2",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^1.1.5",
"csv-loader": "^3.0.3",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-webpack-plugin": "^2.4.1",
"html-webpack-plugin": "^5.0.0-alpha.3",
"less": "^4.0.0",
"less-loader": "^7.2.1",
"lodash-webpack-plugin": "^0.11.6",
"mini-css-extract-plugin": "^1.3.3",
"prettier": "^2.2.1",
"prettier-webpack-plugin": "^1.2.0",
"regenerator-runtime": "^0.13.7",
"sass": "^1.32.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"webpack": "^5.9.0",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^4.0.0-beta.0",
"xml-loader": "^1.2.1"
},
"dependencies": {
"jquery": "^3.5.1",
"lodash": "^4.17.20",
"normalize.css": "^8.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"repository": {
"type": "git",
"url": "git@github.com:/feisk/webpack-test-boilerplate"
}
}