-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
125 lines (125 loc) · 3.53 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "react-form-simple",
"version": "1.5.2",
"description": "A form library for quickly controlling react form input",
"keywords": [
"react",
"form",
"react-form",
"simple",
"hook"
],
"homepage": "https://easy-form.github.io/react-form-simple/",
"repository": {
"type": "git",
"url": "https://github.com/easy-form/react-form-simple.git"
},
"license": "MIT",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "father build",
"build:watch": "father dev",
"coverage": "vitest run --coverage",
"dev": "dumi dev",
"docs:build": "dumi build",
"doctor": "father doctor",
"genAPI": "node ./scripts/generateApimd.js",
"genAPIAll": "npm run genAPI all=1 && npm run genAPIType",
"genAPIType": "node ./scripts/generateTypes.js",
"genHeroDemo": "node ./.dumi/metadata/scripts/convertHeroDemo.js",
"genSand": "node ./.dumi/metadata/scripts/convertSandpack.js",
"lint": "npm run lint:es && npm run lint:css",
"lint:css": "stylelint \"{src,test}/**/*.{css,less}\"",
"lint:es": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install && dumi setup",
"prepublishOnly": "father doctor && npm run build",
"start": "npm run dev",
"test": "vitest src",
"testUi": "vitest src --ui",
"version:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version:git": "git add . && git commit -m \"chore(release): v${npm_package_version}\""
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{css,less}": [
"stylelint --fix",
"prettier --write"
],
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@emotion/css": "^11.11.2",
"lodash": "^4.17.21",
"proxy-polyfill": "^0.3.2",
"react-transition-group": "^4.4.5"
},
"devDependencies": {
"@codesandbox/sandpack-react": "^2.9.0",
"@codesandbox/sandpack-themes": "^2.0.21",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.15",
"@release-it/conventional-changelog": "7.0.2",
"@testing-library/react": "^14.1.2",
"@types/lodash": "^4.14.199",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@umijs/lint": "^4.0.0",
"@vitest/coverage-v8": "^0.34.6",
"@vitest/ui": "^0.34.6",
"antd": "^5.10.2",
"conventional-changelog-cli": "^4.1.0",
"dumi": "^2.2.9",
"esbuild-plugin-less": "^1.3.1",
"eslint": "^8.23.0",
"father": "^4.1.0",
"highlight.js": "^11.9.0",
"husky": "^8.0.1",
"joi": "^17.13.1",
"jsdom": "^23.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.0.0",
"prettier-plugin-packagejson": "^2.2.18",
"react": "^18.0.0",
"react-awesome-reveal": "^4.2.12",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^18.0.0",
"simplebar-react": "^3.2.4",
"stylelint": "^14.9.1",
"vitest": "^0.34.6"
},
"peerDependencies": {
"react": ">=16.9.0",
"react-dom": ">=16.9.0"
},
"publishConfig": {
"access": "public"
},
"authors": [
"wed97land@outlook.com"
],
"registry": [
"https://registry.npmjs.org"
]
}