1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/infrastructure/webpack/package.json
Janne Savolainen 847f2b1b7b Co-authored-by: Mikko Aspiala <mikko.aspiala@gmail.com>
Bump ogre-tools to latest

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
2023-06-01 11:09:58 +03:00

59 lines
1.5 KiB
JSON

{
"name": "@k8slens/webpack",
"private": false,
"version": "6.5.0",
"description": "Webpack configurations and scripts for Lens packages.",
"type": "commonjs",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lensapp/lens.git"
},
"main": "dist/index.js",
"author": {
"name": "OpenLens Authors",
"email": "info@k8slens.dev"
},
"license": "MIT",
"homepage": "https://github.com/lensapp/lens",
"scripts": {
"build": "webpack",
"clean": "rimraf dist/",
"test:unit": "jest --coverage --runInBand"
},
"dependencies": {
"@ogre-tools/linkable": "^17.2.0",
"@types/webpack-env": "^1.18.0",
"css-loader": "^6.7.2",
"fork-ts-checker-webpack-plugin": "^7.3.0",
"fs-extra": "^9.0.1",
"mini-css-extract-plugin": "^2.7.3",
"sass": "^1.62.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"tailwindcss": "^3.3.2",
"ts-loader": "^9.4.1",
"webpack": "^5.81.0",
"webpack-cli": "^4.10.0"
},
"peerDependencies": {
"@ogre-tools/fp": "^17.2.0",
"@ogre-tools/injectable": "^17.2.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@async-fn/jest": "^1.6.4",
"@k8slens/typescript": "^6.5.0",
"@ogre-tools/injectable-extension-for-auto-registration": "^17.2.0",
"@ogre-tools/test-utils": "^17.2.0",
"ts-node": "^10.9.1",
"webpack-node-externals": "^3.0.0"
},
"bin": {
"lens-webpack-build": "bin/webpack-build"
}
}