-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.27 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.27 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
{
"name": "webpack-starter",
"version": "1.0.0",
"description": "Pre-configured starter including webpack, ESLint, Sass, Stylelint and other useful loaders and linters",
"main": "index.js",
"repository": "https://github.com/gabrielecanepa/webpack-starter",
"author": "Gabriele Canepa <contact@gabrielecanepa.com>",
"license": "MIT",
"scripts": {
"setup": "yarn init && yarn upgrade --latest && touch .env",
"start": "webpack-dev-server",
"dev": "webpack-dev-server --mode development",
"build": "webpack build --mode production",
"lint": "eslint './src/**/*{.mjs,.js,.jsx}' && stylelint './src/**/*.{css,scss,sass}'"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/eslint-parser": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"dotenv-webpack": "^7.1.0",
"eslint": "^8.16.0",
"eslint-plugin-import": "^2.26.0",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"node-sass": "^7.0.1",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.1",
"stylelint": "^14.8.5",
"stylelint-config-recommended-scss": "^6.0.0",
"stylelint-scss": "^4.2.0",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
}
}