2021-12-02 03:17:10 +08:00
{
"name" : "root" ,
"private" : true ,
"workspaces" : [
"website"
] ,
"scripts" : {
"archive" : "yarn workspace nonebot docusaurus docs:version" ,
"build" : "yarn workspace nonebot build" ,
2022-01-08 19:36:19 +08:00
"build:plugin" : "cross-env BASE_URL='/website/' yarn workspace nonebot build" ,
2021-12-02 03:17:10 +08:00
"start" : "yarn workspace nonebot start" ,
2021-12-02 15:00:55 +08:00
"serve" : "yarn workspace nonebot serve" ,
2021-12-02 14:03:06 +08:00
"clear" : "yarn workspace nonebot clear" ,
2023-07-17 20:42:15 +08:00
"prettier" : "prettier --config ./.prettierrc --write \"./website/\"" ,
2023-09-27 16:00:26 +08:00
"lint" : "yarn lint:js && yarn lint:style" ,
"lint:js" : "eslint --cache --report-unused-disable-directives \"**/*.{js,jsx,ts,tsx,mjs}\"" ,
"lint:js:fix" : "eslint --cache --report-unused-disable-directives --fix \"**/*.{js,jsx,ts,tsx,mjs}\"" ,
"lint:style" : "stylelint \"**/*.css\"" ,
"lint:style:fix" : "stylelint --fix \"**/*.css\"" ,
2023-07-17 20:42:15 +08:00
"pyright" : "pyright"
2021-12-02 03:17:10 +08:00
} ,
"devDependencies" : {
2023-09-27 16:00:26 +08:00
"@typescript-eslint/eslint-plugin" : "^6.6.0" ,
"@typescript-eslint/parser" : "^6.6.0" ,
2021-12-02 14:03:06 +08:00
"cross-env" : "^7.0.3" ,
2023-09-27 16:00:26 +08:00
"eslint" : "^8.48.0" ,
"eslint-config-prettier" : "^9.0.0" ,
"eslint-import-resolver-typescript" : "^3.6.0" ,
"eslint-plugin-import" : "^2.28.1" ,
"eslint-plugin-jsx-a11y" : "^6.7.1" ,
"eslint-plugin-prettier" : "^5.0.0" ,
"eslint-plugin-react" : "^7.33.2" ,
"eslint-plugin-react-hooks" : "^4.6.0" ,
"eslint-plugin-regexp" : "^1.15.0" ,
"prettier" : "^3.0.3" ,
"pyright" : "^1.1.317" ,
"stylelint" : "^15.10.3" ,
"stylelint-config-standard" : "^34.0.0" ,
"stylelint-prettier" : "^4.0.2"
2021-12-02 03:17:10 +08:00
}
}