-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 1.9 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
71
{
"name": "@m-fe/stl-viewer",
"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/*"
],
"keywords": [
"react",
"redux",
"mobx",
"webpack",
"typescript"
],
"scripts": {
"bootstrap": "yarn install && yarn run build",
"build": "npm run clean && yarn workspaces run build && cp -r ./packages/app-lib/build/ ./build",
"clean": "rm -rf ./build && yarn workspaces run clean",
"clean:cov": "yarn workspaces run clean:cov",
"dev": "npm start",
"lint": "./scripts/tools/lint_pkgs.sh",
"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/app-lib && npm start)",
"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"
},
"dependencies": {
"core-js": "^3.6.5"
},
"devDependencies": {
"@m-fe/app-config": "^0.5.2",
"@svgr/webpack": "^5.4.0",
"react-dom": "^16.13.1"
},
"browserslist": [
"extends @m-fe/browserslist-config"
],
"commitlint": {
"extends": [
"@m-fe"
]
},
"remarkConfig": {
"plugins": [
"@m-fe/remark-config"
]
},
"stylelint": {
"extends": [
"@m-fe/stylelint-config",
"@m-fe/stylelint-config/modules"
],
"rules": {
"font-family-no-missing-generic-family-keyword": null,
"no-descending-specificity": null,
"plugin/no-unsupported-browser-features": null,
"plugin/no-low-performance-animation-properties": null
}
}
}