forked from alitajs/DynamicForm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.34 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
{
"name": "@alitajs/dform",
"version": "2.0.4",
"description": "",
"main": "lib/index.js",
"module": "es/index.js",
"unpkg": "dist/index.min.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"start": "father-doc dev",
"dev": "cross-env CUSTOM_DEV=true umi dev",
"build:demo": "cross-env CUSTOM_DEV=true umi build",
"build:doc": "father-doc build",
"build": "father-build",
"publish": "npm publish --access public",
"prepublishOnly": "father-build",
"lint": "npm run lint:js && npm run lint:style && npm run lint:prettier",
"lint-staged": "lint-staged",
"lint-staged:js": "eslint --ext .js,.jsx,.ts,.tsx ",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src && npm run lint:style",
"lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"lint:prettier": "check-prettier lint",
"lint:style": "stylelint --fix \"src/**/*.less\" --syntax less",
"prettier": "prettier -c --write \"**/*\"",
"format-imports": "cross-env import-sort --write '**/*.{js,jsx,ts,tsx}'"
},
"repository": "https://github.com/alitajs/DynamicForm",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@bang88/china-city-data": "^1.0.0",
"antd-mobile": "^2.3.1",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.2.0",
"dayjs": "^1.8.28",
"lodash": "^4.17.15",
"rc-field-form": "1.14.0"
},
"peerDependencies": {
"antd-mobile": "^2.3.1",
"react": "^16.8.5"
},
"devDependencies": {
"@umijs/fabric": "2.0.0-beta.4",
"check-prettier": "^1.0.3",
"cross-env": "^6.0.3",
"eslint": "5.10.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-unicorn": "^16.1.1",
"father-build": "^1.17.2",
"father-doc": "^1.0.0-alpha.15",
"husky": "^3.1.0",
"import-sort-cli": "^6.0.0",
"import-sort-parser-babylon": "^6.0.0",
"import-sort-parser-typescript": "^6.0.0",
"import-sort-style-module": "^6.0.0",
"lint-staged": "^9.5.0",
"stylelint": "^12.0.1",
"yorkie": "^2.0.0"
},
"files": [
"dist",
"es",
"lib"
]
}