-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.66 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
{
"name": "rong-form",
"version": "0.1.0",
"description": "Modern form management library for React powered by Mobx",
"main": "./lib/index",
"module": "./es/index",
"scripts": {
"start": "dumi dev",
"test": "father test",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d .doc",
"deploy": "npm run docs:build && npm run docs:deploy",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"build": "father-build"
},
"files": [
"lib",
"es",
"dist"
],
"keywords": [
"react",
"form",
"mobx"
],
"author": "Tingzhou Jia",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@babel/runtime": "^7.13.17",
"async-validator": "^3.5.1",
"mobx": "^6.2.0",
"mobx-react": "^7.1.0",
"mobx-state-tree": "^5.0.1",
"react-is": "^17.0.2"
},
"devDependencies": {
"@umijs/preset-react": "1.x",
"@umijs/test": "^3.0.5",
"@types/enzyme": "^3.10.5",
"@types/jest": "^26.0.20",
"babel-plugin-import": "^1.13.0",
"enzyme-adapter-react-16": "^1.0.2",
"deep-equal": "^2.0.3",
"dumi": "^1.0.33",
"enzyme": "^3.11.0",
"father": "^2.30.4",
"father-build": "^1.18.6",
"fetch-jsonp": "^1.1.3",
"gh-pages": "^3.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"react": "^16.12.0",
"rong-react": "^0.1.4"
}
}