starter-kit/package.json
dependabot[bot] 46fb9f9ee8 build(deps-dev): bump the eslint group with 1 update
Bumps the eslint group with 1 update: [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import).

- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.29.0...v2.29.1)

---
updated-dependencies:
- dependency-name: eslint-plugin-import
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: eslint
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-12-15 10:19:02 +01:00

55 lines
1.7 KiB
JSON

{
"name": "starter-kit",
"description": "Scaffolding for a cockpit module",
"type": "module",
"main": "index.js",
"repository": "git@github.com:cockpit/starter-kit.git",
"author": "",
"license": "LGPL-2.1",
"engines": {
"node": ">= 16"
},
"scripts": {
"watch": "ESBUILD_WATCH='true' ./build.js",
"build": "./build.js",
"eslint": "eslint --ext .js --ext .jsx src/",
"eslint:fix": "eslint --fix --ext .js --ext .jsx src/",
"stylelint": "stylelint src/*{.css,scss}",
"stylelint:fix": "stylelint --fix src/*{.css,scss}"
},
"devDependencies": {
"argparse": "2.0.1",
"chrome-remote-interface": "0.33.0",
"esbuild": "0.19.9",
"esbuild-plugin-copy": "2.1.1",
"esbuild-plugin-replace": "1.4.0",
"esbuild-sass-plugin": "2.16.0",
"esbuild-wasm": "0.19.9",
"eslint": "8.55.0",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-jsx": "11.0.0",
"eslint-config-standard-react": "13.0.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"gettext-parser": "7.0.1",
"htmlparser": "1.7.7",
"jed": "1.1.1",
"qunit": "2.20.0",
"sass": "1.69.5",
"stylelint": "15.11.0",
"stylelint-config-standard": "34.0.0",
"stylelint-config-standard-scss": "11.1.0",
"stylelint-formatter-pretty": "3.2.1"
},
"dependencies": {
"@patternfly/patternfly": "5.1.0",
"@patternfly/react-core": "5.1.2",
"@patternfly/react-icons": "5.1.2",
"@patternfly/react-styles": "5.1.2",
"react": "18.2.0",
"react-dom": "18.2.0"
}
}