@jenssimon/webpack-config-sfcc
Version:
A shareable Webpack configuration for SFCC projects
124 lines (123 loc) • 3.29 kB
JSON
{
"name": "@jenssimon/webpack-config-sfcc",
"version": "0.11.4",
"description": "A shareable Webpack configuration for SFCC projects",
"author": "Jens Simon <https://github.com/jenssimon/>",
"license": "MIT",
"type": "module",
"keywords": [
"salesforce",
"commercecloud",
"sfcc",
"webpack"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/jenssimon/webpack-config-sfcc"
},
"scripts": {
"lint": "eslint .",
"build": "tsc",
"prepare": "tsc",
"commit": "cz",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"semantic-release": "semantic-release"
},
"dependencies": {
"@swc/core": "^1.3.94",
"@swc/helpers": "^0.5.3",
"autoprefixer": "^10.4.16",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"circular-dependency-plugin": "^5.2.2",
"css-loader": "^7.0.0",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint-webpack-plugin": "^5.0.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.31",
"postcss-loader": "^8.0.0",
"postcss-merge-longhand": "^7.0.0",
"postcss-preset-env": "^10.0.0",
"sass": "1.94.2",
"sass-loader": "^16.0.0",
"swc-loader": "^0.2.3",
"webpack-remove-empty-scripts": "^1.0.4",
"yaml": "^2.3.3"
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.39.0",
"@jenssimon/eslint-config-base": "^10.0.0",
"@stylistic/eslint-plugin": "^5.5.0",
"@types/case-sensitive-paths-webpack-plugin": "^2.1.8",
"@types/circular-dependency-plugin": "^5.0.7",
"@types/node": "^24.0.0",
"@types/webpack": "^5.28.4",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.39.0",
"eslint-config-airbnb-extended": "^2.3.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-esm": "^3.0.1",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-unicorn": "^62.0.0",
"husky": "^9.0.0",
"lint-staged": "^16.0.0",
"pinst": "^3.0.0",
"typescript": "^5.2.2",
"typescript-eslint": "^8.46.3",
"webpack": "^5.89.0",
"webpack-dev-server": "^5.0.0"
},
"peerDependencies": {
"webpack": "^5.76.3"
},
"eslintConfig": {
"extends": [
"@jenssimon/base",
"plugin:import-esm/recommended"
],
"parserOptions": {
"project": "./tsconfig.json",
"ecmaVersion": "latest"
},
"rules": {
"@typescript-eslint/naming-convention": "off",
"import/no-unresolved": "off"
},
"overrides": [
{
"files": [
"*.ts"
],
"extends": [
"@jenssimon/typescript"
],
"rules": {
"@typescript-eslint/naming-convention": "off"
}
}
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"main"
]
},
"packageManager": "yarn@4.11.0"
}