-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.51 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.51 KB
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
{
"name": "antd-json-form",
"version": "1.0.2",
"homepage": "https://github.com/yubin-code",
"license": "ISC",
"description": "JSON-Form 在antd 基础上进行了封装方便快速生成表单",
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"build": "father-build",
"lint": "npm run lint:js && npm run lint:style",
"lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"lint:style": "stylelint --fix \"src/**/*.less\" --syntax less",
"lint:prettier": "prettier -c --write \"**/*\"",
"test": "umi-test",
"test:coverage": "umi-test --coverage"
},
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"/lib",
"/dist"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
],
"dependencies": {
"@umijs/preset-react": "1.x",
"@umijs/test": "^3.0.5",
"antd": "^4.2.4",
"antd-linkage": "^1.1.0",
"braft-editor": "^2.3.9",
"dumi": "^1.0.6",
"father-build": "^1.17.2",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-github-btn": "^1.2.0",
"yorkie": "^2.0.0"
},
"devDependencies": {
"@types/react": "^16.9.35",
"@umijs/fabric": "2.0.8",
"eslint": "6.8.0",
"husky": "^4.2.5",
"pretty-quick": "^2.0.1",
"stylelint": "^13.4.0",
"typescript": "3.5.3"
},
"authors": {
"name": "yubin",
"email": "18462232@qq.com"
}
}