-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.35 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
{
"name": "@sensoro-design/styles",
"version": "1.29.0",
"description": "Sensoro Design Styles",
"scripts": {
"start": "dumi dev",
"build": "pnpm generate && redbud build",
"build:site": "dumi build",
"prepare": "husky install",
"generate": "node ./scripts/generate-entry.js"
},
"files": [
"es",
"lib",
"dist",
"style"
],
"license": "MIT",
"devDependencies": {
"@ant-design/icons": "^4.7.0",
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@sensoro-design/icons": "^2.5.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@umijs/babel-preset-umi": "3.5.30",
"antd": "4.23.2",
"babel-plugin-import": "^1.13.5",
"dumi": "^1.1.47",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"moment": "^2.29.4",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"redbud": "^1.2.3",
"semantic-release": "^19.0.5"
},
"lint-staged": {
"*.{jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"browserslist": [
"> 3%",
"last 2 versions",
"not ie < 11",
"ios >= 9",
"android >= 4.4"
],
"publishConfig": {
"access": "public"
}
}