mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-28 18:06:34 +02:00
* chore(deps-dev): bump esbuild from 0.21.1 to 0.25.0 in /ui Bumps [esbuild](https://github.com/evanw/esbuild) from 0.21.1 to 0.25.0. - [Release notes](https://github.com/evanw/esbuild/releases) - [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2024.md) - [Commits](https://github.com/evanw/esbuild/compare/v0.21.1...v0.25.0) --- updated-dependencies: - dependency-name: esbuild dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> * upgrade node * use 22 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Caleb Doxsey <cdoxsey@pomerium.com>
61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"name": "pomerium",
|
|
"version": "1.0.0",
|
|
"main": "src/index.tsx",
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"build": "ts-node ./scripts/esbuild.ts",
|
|
"format": "prettier --write .",
|
|
"lint": "eslint .",
|
|
"watch": "ts-node ./scripts/esbuild.ts --watch"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@babel/core": "^7.0.0",
|
|
"@emotion/react": "^11.7.1",
|
|
"@emotion/styled": "^11.11.0",
|
|
"@fontsource/dm-mono": "^5.0.14",
|
|
"@fontsource/dm-sans": "^5.0.13",
|
|
"@mui/icons-material": "^5.14.9",
|
|
"@mui/material": "^5.4.0",
|
|
"lodash": "^4.17.21",
|
|
"markdown-to-jsx": "^7.2.1",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-feather": "^2.0.10"
|
|
},
|
|
"devDependencies": {
|
|
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
|
|
"@types/lodash": "^4.17.1",
|
|
"@types/node": "^20.12.11",
|
|
"@types/react": "^17.0.34",
|
|
"@types/react-dom": "^17.0.11",
|
|
"@typescript-eslint/eslint-plugin": "^5.10.2",
|
|
"@typescript-eslint/parser": "^5.59.11",
|
|
"esbuild": "^0.25.0",
|
|
"eslint": "7.32.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-react": "^7.28.0",
|
|
"prettier": "^2.4.1",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.1.3"
|
|
},
|
|
"prettier": {
|
|
"importOrder": [
|
|
"^[./]"
|
|
],
|
|
"importOrderSeparation": true,
|
|
"importOrderSortSpecifiers": true
|
|
}
|
|
}
|