| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
 | | { |  |   "name": "flexJobMiniApp", |  |   "version": "1.0.0", |  |   "private": true, |  |   "description": "", |  |   "templateInfo": { |  |     "name": "default", |  |     "typescript": true, |  |     "css": "sass" |  |   }, |  |   "workspaces": [ |  |     "packages/*", |  |     "apps/*" |  |   ], |  |   "scripts": { |  |     "prepare": "husky install", |  |     "lint": "eslint --ext .vue --ext .js --ext .ts src/", |  |     "lint:prettier": "prettier --write  \"src/**/*.{js,json,tsx,css,less,scss,vue,html,md}\"", |  |     "lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/", |  |     "lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.cjs", |  |     "openapi": "bole openapi", |  |     "change": "changeset add", |  |     "bump": "changeset version", |  |     "BClient:build": "pnpm run -C apps/bMiniApp build:weapp:upload", |  |     "BClient:staging:build": "pnpm run -C apps/bMiniApp build:weapp:staging:upload", |  |     "CClient:build": "pnpm run -C apps/cMiniApp build:weapp:upload", |  |     "CClient:staging:build": "pnpm run -C apps/cMiniApp build:weapp:staging:upload", |  |     "build:all": "pnpm run -r --parallel build:weapp:upload" |  |   }, |  |   "browserslist": [ |  |     "last 3 versions", |  |     "Android >= 4.1", |  |     "ios >= 8" |  |   ], |  |   "author": "", |  |   "devDependencies": { |  |     "@changesets/cli": "^2.27.8", |  |     "@commitlint/config-conventional": "^17.3.0", |  |     "@release-it/conventional-changelog": "^8.0.2", |  |     "@typescript-eslint/eslint-plugin": "^6.7.5", |  |     "@typescript-eslint/parser": "^6.7.5", |  |     "@vue/eslint-config-prettier": "^7.0.0", |  |     "@vue/eslint-config-typescript": "^11.0.2", |  |     "commitlint": "^17.7.2", |  |     "cross-env": "^7.0.3", |  |     "eslint": "^8.23.1", |  |     "eslint-config-taro": "3.6.20", |  |     "eslint-plugin-prettier": "^4.2.1", |  |     "eslint-plugin-vue": "^9.0.0", |  |     "husky": "^8.0.2", |  |     "lint-staged": "^14.0.1", |  |     "mockjs": "^1.1.0", |  |     "postcss-html": "1.5.0", |  |     "prettier": "^2.7.1", |  |     "release-it": "^17.6.0", |  |     "rimraf": "^6.0.1", |  |     "stylelint": "^14.15.0", |  |     "stylelint-config-html": "^1.1.0", |  |     "stylelint-config-prettier": "^9.0.4", |  |     "stylelint-config-recess-order": "^3.0.0", |  |     "stylelint-config-recommended": "^9.0.0", |  |     "stylelint-config-standard": "^29.0.0", |  |     "stylelint-config-standard-scss": "^6.1.0", |  |     "stylelint-order": "^5.0.0", |  |     "stylelint-scss": "^4.3.0", |  |     "typescript": "^5.2.2" |  |   }, |  |   "pnpm": { |  |     "overrides": { |  |       "vue": "3.5.12" |  |     }, |  |     "patchedDependencies": { |  |       "@nutui/nutui-taro@4.3.13": "patches/@nutui__nutui-taro@4.3.13.patch" |  |     } |  |   }, |  |   "dependencies": { |  |     "@12333/components": "workspace:^", |  |     "@12333/constants": "workspace:^", |  |     "@12333/hooks": "workspace:^", |  |     "@12333/services": "workspace:^", |  |     "@12333/utils": "workspace:^", |  |     "senior-request": "1.0.1" |  |   } |  | } | 
 |