-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 1.97 KB
/
package.json
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
{
"name": "uf-file-manager",
"version": "0.0.1",
"description": "Micro-Frontend Libs, with React & TS & Webpack",
"repository": {
"type": "git",
"url": "https://github.com/wx-chevalier/m-fe-libs"
},
"author": "wx-chevalier@github",
"license": "MIT",
"private": true,
"workspaces": [
"packages/react-lib"
],
"keywords": [
"react",
"redux",
"mobx",
"webpack",
"typescript"
],
"scripts": {
"bootstrap": "yarn install && yarn run build",
"build": "npm run clean && yarn workspaces run build && cp -r ./packages/fm-components/build ./build",
"clean": "yarn workspaces run clean",
"clean:cov": "yarn workspaces run clean:cov",
"dev": "npm start",
"lint": "yarn workspaces run lint",
"lint-staged": "lint-staged",
"postinstall": "node ./node_modules/husky/lib/installer/bin install",
"prettier-all": "prettier --write 'packages/**/src/**/*.{ts,tsx}' '!src/{assets,datas}/**'",
"start": "(cd packages/fm-components && npm start)",
"start:m-fe": "./scripts/tools/start_micro.sh",
"test": "yarn workspaces run test",
"test:cov": "yarn workspaces run test:cov",
"test:watch": "yarn workspaces run test:watch",
"upgrade": "./scripts/tools/upgrade_pkgs.sh"
},
"devDependencies": {
"@svgr/webpack": "^5.1.0",
"@wx-fc/app-config": "^0.3.3"
},
"browserslist": [
"extends @wx-fc/browserslist-config/modern"
],
"commitlint": {
"extends": [
"@wx-fc"
]
},
"prettier": "@wx-fc/prettier-config/semi",
"remarkConfig": {
"plugins": [
"@wx-fc/remark-config"
]
},
"stylelint": {
"extends": [
"@wx-fc/stylelint-config",
"@wx-fc/stylelint-config/modules"
],
"rules": {
"font-family-no-missing-generic-family-keyword": null,
"declaration-empty-line-before": null,
"no-descending-specificity": null,
"plugin/no-unsupported-browser-features": null,
"plugin/no-low-performance-animation-properties": null
}
}
}