-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.68 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
79
80
81
82
{
"name": "webpack-boilerplate",
"version": "1.0.1",
"description": "Customizable Boilerplate using Webpack 5, Babel, PostCSS and Sass with an active development server and an optimized production build.",
"main": "./dist/index.html",
"author": "Matheus Benites",
"license": "MIT",
"scripts": {
"start": "cross-env NODE_ENV=development webpack serve --config config/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config config/webpack.prod.js",
"postinstall": "husky install",
"lint:eslint": "eslint . --ext .js,.jsx",
"lint:stylelint": "stylelint ./src/**.css"
},
"keywords": [
"webpack",
"webpack 5",
"webpack boilerplate"
],
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/eslint-plugin": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"babel-loader": "^8.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"cross-env": "^7.0.2",
"css-loader": "^5.0.0",
"eslint": "7.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "4.0.0",
"file-loader": "^6.2.0",
"husky": "^5.0.0-beta.0",
"node-sass": "^4.14.1",
"postcss-loader": "^4.0.4",
"postcss-preset-env": "^6.7.0",
"prettier": "2.1.2",
"sass-loader": "^10.0.3",
"style-loader": "^2.0.0",
"stylelint": "^13.7.2",
"stylelint-config-standard": "^20.0.0",
"url-loader": "^4.1.1",
"webpack-cli": "^4.0.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.2.1",
"css-minimizer-webpack-plugin": "^1.1.5",
"html-webpack-plugin": "^5.0.0-alpha.14",
"mini-css-extract-plugin": "^1.0.0",
"mini-svg-data-uri": "^1.2.3",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"path": "^0.12.7",
"terser-webpack-plugin": "^5.0.0",
"webpack": "^5.1.3",
"webpack-bundle-analyzer": "^4.1.0",
"autoprefixer": "^10.0.2",
"webpack-merge": "^5.2.0",
"webpack-dev-server": "^3.11.0"
},
"repository": {
"type": "git",
"url": "https://matheus-benits@bitbucket.org/easycarros/boilerplate-webpack-basic.git"
},
"dependencies": {
"dotenv": "^8.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0"
},
"eslintIgnore": [
"*.test.js"
]
}