-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
82 lines (82 loc) · 2.2 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
{
"name": "@alitajs/dform",
"version": "3.10.4",
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"build": "father build",
"watch": "father build -w",
"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": "jest",
"test:coverage": "jest --coverage",
"publish": "npm publish --access public",
"publish:test": "npm run publish --tag next",
"publish:test-date": "npm run publish --tag date"
},
"main": "lib/index.js",
"module": "es/index.js",
"typings": "es/index.d.ts",
"files": [
"dist",
"es",
"lib"
],
"repository": "https://github.com/alitajs/DynamicForm",
"license": "MIT",
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@bang88/china-city-data": "^1.0.0",
"antd-mobile-v2": "2.3.4",
"classnames": "^2.3.1",
"copy-to-clipboard": "^3.3.1",
"dayjs": "^1.10.6",
"lodash.chunk": "^4.2.0",
"rc-field-form": "^1.27.0",
"react-transition-group": "4.4.1",
"rmc-date-picker": "^6.0.10",
"rmc-feedback": "^2.0.0"
},
"peerDependencies": {
"react": ">=16.8.6"
},
"resolutions": {
"@types/react": "16.14.32",
"@types/react-dom": "16.9.16"
},
"devDependencies": {
"@alita/test": "^0.0.4",
"@babel/core": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@types/lodash": "^4.14.171",
"@types/lodash.chunk": "^4.2.7",
"@types/react": "16.14.32",
"@types/react-dom": "16.9.16",
"@types/react-transition-group": "4.4.1",
"alita-test": "4.0.0-alpha.6",
"babel-plugin-import": "^1.13.3",
"dumi": "^1.0.16",
"dumi-theme-mobile": "^1.1.6",
"father": "4.1.1",
"gh-pages": "^3.2.3",
"jest": "^27.1.0",
"lint-staged": "^10.0.7",
"postcss-plugin-px2rem": "^0.8.1",
"prettier": "^2.2.1",
"ts-node": "^10.8.1",
"yorkie": "^2.0.0"
}
}