mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 04:02:10 +00:00
62 lines
1.5 KiB
JSON
62 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",
|
|
"luxon": "^2.5.2",
|
|
"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": "2.0.4",
|
|
"@types/luxon": "^2.0.9",
|
|
"@types/node": "^17.0.14",
|
|
"@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.13.12",
|
|
"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
|
|
}
|
|
}
|