-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.45 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
{
"name": "webpack-starter-with-handlebars",
"version": "1.0.0",
"description": "An easy-to-use starter-kit for frontend projects using Webpack + Handlebars.",
"scripts": {
"lint:styles": "stylelint src/**/*.scss",
"lint:scripts": "eslint src/**/*js",
"start": "cross-env NODE_ENV=development webpack serve",
"build": "cross-env NODE_ENV=production webpack"
},
"keywords": [
"webpack",
"webpack5",
"starter kit",
"frontend",
"es6",
"javascript",
"handlebars",
"sass",
"scss"
],
"author": "gabriela",
"license": "MIT",
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/eslint-parser": "7.25.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-class-properties": "7.25.4",
"@babel/preset-env": "7.25.4",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.0",
"babel-loader": "9.1.3",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "7.0.3",
"css-loader": "7.1.2",
"dotenv": "16.4.5",
"eslint": "9.9.0",
"eslint-webpack-plugin": "4.2.0",
"globals": "^15.9.0",
"handlebars": "^4.7.8",
"html-bundler-webpack-plugin": "^3.17.4",
"postcss-loader": "8.1.1",
"postcss-preset-env": "10.0.2",
"postcss-scss": "4.0.9",
"sass": "1.77.8",
"sass-loader": "16.0.1",
"stylelint": "16.8.2",
"stylelint-config-standard-scss": "13.1.0",
"stylelint-webpack-plugin": "^5.0.1",
"webpack": "5.94.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "6.0.1"
}
}