-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
67 lines (67 loc) · 1.81 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
{
"name": "react-visual-design-components",
"version": "2.0.8",
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"build": "father-build",
"deploy": "npm run docs:build && npm run docs:deploy",
"release": "npm run build && npm publish",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"changelog": "conventional-changelog -p angular -i ./CHANGELOG.md -s -r 0"
},
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"es",
"lib"
],
"lint-staged": {
"*.{js,jsx,md,json}": [
"prettier --write",
"eslint --fix"
],
"*.less": [
"prettier --write",
"stylelint --fix"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"author": "kokiy",
"homepage": "https://github.com/react-visual-design/react-visual-design-components",
"license": "MIT",
"repository": "https://github.com/react-visual-design/react-visual-design-components",
"keywords": [
"react-component",
"react-visual-design-components"
],
"dependencies": {
"antd-mobile": "^2.3.4",
"dayjs": "^1.9.7",
"lodash": "^4.17.21",
"react": "^17.0.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@rollup/plugin-commonjs": "^19.0.0",
"@umijs/fabric": "^2.6.2",
"@umijs/test": "^3.0.5",
"babel-plugin-import": "^1.13.3",
"conventional-changelog-cli": "^2.1.1",
"dumi": "^1.1.23",
"dumi-theme-mobile": "^1.1.6",
"eslint-plugin-json": "^3.0.0",
"father-build": "^1.19.6",
"gh-pages": "^3.2.3",
"husky": "^7.0.1",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2"
}
}