-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.76 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
{
"name": "webpack4-boilerplate",
"version": "1.0.0",
"engines": {
"node": ">= 12.13.0",
"npm": ">= 6.13.0"
},
"description": "Webpack 4 Boilerplate with Babel, TypeScript, SASS or SCSS, Less, browser autoprefixer, image compressor, dev server and etc.",
"main": "index.js",
"scripts": {
"build:dev": "NODE_ENV=development webpack --mode=development",
"build:prod": "NODE_ENV=production webpack --mode=production",
"watch:dev": "NODE_ENV=development webpack-dev-server --mode=development"
},
"keywords": [
"webpack",
"bundler",
"webpack4",
"webpack-loader",
"webpack-starter",
"boilerplate",
"TypeScript",
"image compressor",
"webpack-configuration",
"webpack4-boilerplate"
],
"author": "Mostafa Rahmati <[email protected]> (https://github.com/MR-Mostafa)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-classes": "^7.7.0",
"@babel/plugin-transform-shorthand-properties": "^7.2.0",
"@babel/plugin-transform-spread": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"autoprefixer": "^9.7.1",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-files-from-to": "^2.1.0",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-node": "^4.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"file-loader": "^5.0.2",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^6.0.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"postcss-base64": "^0.7.1",
"postcss-loader": "^3.0.0",
"remove-files-webpack-plugin": "^1.1.3",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"stylelint": "^12.0.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-standard": "^19.0.0",
"stylelint-scss": "^3.12.1",
"ts-loader": "^6.2.1",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"fontfaceobserver": "^2.1.0"
}
}