-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.35 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
78
{
"name": "webpack-base-app",
"version": "1.0.0",
"description": "Webpack base application with babel, preprocessors and other features",
"main": "./dist/index.html",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --mode development",
"dev-w": "cross-env NODE_ENV=development webpack --mode development --watch",
"build": "cross-env NODE_ENV=production webpack --mode production",
"start": "cross-env NODE_ENV=development webpack-dev-server --mode development --open",
"stats": "webpack --json > stats.json && webpack-bundle-analyzer stats.json"
},
"author": "dec04 <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/dec04/webpack-base-app.git"
},
"keywords": [
"webpack complete application",
"webpack",
"webpack react"
],
"bugs": {
"url": "https://github.com/dec04/webpack-base-app/issues"
},
"homepage": "https://github.com/dec04/webpack-base-app",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"autoprefixer": "^10.0.1",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.2",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"less": "^3.11.3",
"less-loader": "^6.1.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss": "^8.1.2",
"postcss-loader": "^4.0.4",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.0.3",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"xml-loader": "^1.2.1"
},
"dependencies": {
"@babel/polyfill": "^7.10.1",
"jquery": "^3.5.1",
"lodash": "^4.17.20",
"normalize.css": "^8.0.1",
"postcss-preset-env": "^6.7.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"tailwindcss": "^1.9.5"
},
"browserslist": [
"> .01%",
"not dead",
"last 3 Chrome versions",
"last 3 Firefox versions",
"last 3 Safari versions",
"last 2 Edge versions",
"last 1 version",
"Firefox ESR",
"not ie <= 11"
]
}