mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
57 lines
1.6 KiB
JSON
57 lines
1.6 KiB
JSON
{
|
|
"name": "@logto/console",
|
|
"version": "0.1.0",
|
|
"description": "> TODO: description",
|
|
"author": "Gao Sun <gao@silverhand.io>",
|
|
"homepage": "https://github.com/logto-io/logto#readme",
|
|
"license": "MPL-2.0",
|
|
"scripts": {
|
|
"preinstall": "npx only-allow pnpm",
|
|
"precommit": "lint-staged",
|
|
"start": "parcel src/index.html",
|
|
"check": "tsc --noEmit",
|
|
"build": "pnpm check && rm -rf dist && parcel build src/index.html --no-autoinstall",
|
|
"lint": "eslint --ext .ts --ext .tsx src",
|
|
"stylelint": "stylelint \"src/**/*.scss\""
|
|
},
|
|
"dependencies": {
|
|
"@logto/phrases": "^0.1.0",
|
|
"@logto/schemas": "^0.1.0",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@parcel/core": "^2.3.1",
|
|
"@parcel/transformer-sass": "^2.3.1",
|
|
"@silverhand/eslint-config": "^0.9.1",
|
|
"@silverhand/eslint-config-react": "^0.9.2",
|
|
"@silverhand/ts-config": "^0.9.1",
|
|
"@silverhand/ts-config-react": "^0.9.2",
|
|
"@types/react": "^17.0.14",
|
|
"@types/react-dom": "^17.0.9",
|
|
"eslint": "^8.10.0",
|
|
"lint-staged": "^11.1.1",
|
|
"parcel": "^2.3.1",
|
|
"postcss": "^8.4.6",
|
|
"postcss-modules": "^4.3.0",
|
|
"prettier": "^2.3.2",
|
|
"stylelint": "^13.13.1",
|
|
"typescript": "^4.5.5"
|
|
},
|
|
"alias": {
|
|
"@/*": "./src/$1"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "@silverhand/react",
|
|
"rules": {
|
|
"react/jsx-curly-brace-presence": [
|
|
"error",
|
|
{ "props": "never", "children": "never", "propElementValues": "always" }
|
|
]
|
|
}
|
|
},
|
|
"stylelint": {
|
|
"extends": "@silverhand/eslint-config-react/.stylelintrc"
|
|
},
|
|
"prettier": "@silverhand/eslint-config/.prettierrc"
|
|
}
|