-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.82 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": "sula-dynamic-form",
"version": "1.1.0",
"scripts": {
"start": "dumi dev",
"docs:build": "dumi build",
"docs:deploy": "gh-pages -d docs-dist",
"build": "father-build",
"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": "umi-test",
"test:coverage": "umi-test --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rodchen-king/sula-dynamic-form.git"
},
"main": "es/index.js",
"module": "es/index.esm.js",
"typings": "es/index.d.ts",
"files": [
"/es/"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@monaco-editor/react": "^3.6.3",
"@sula/nav": "1.0.0-alpha.2",
"antd": "^4.2.5",
"ast-types": "^0.13.3",
"react": "^16.12.0",
"sula": "^1.0.0-beta.11",
"sula-dynamic-form": "^1.1.0",
"umi-plugin-sula": "^1.0.0-beta.1"
},
"peerdependencies": {
"@monaco-editor/react": "^3.6.3",
"@sula/nav": "1.0.0-alpha.2",
"antd": "^4.2.5",
"react": "^16.12.0",
"sula": "^1.0.0-beta.11",
"umi-plugin-sula": "^1.0.0-beta.1",
"ast-types": "^0.13.3"
},
"devDependencies": {
"@babel/plugin-transform-typescript": "^7.12.1",
"@sula/templates": "^1.0.3",
"@umijs/preset-react": "^1.5.19",
"@umijs/test": "^3.0.5",
"acorn": "^7.2.0",
"acorn-walk": "^7.1.1",
"ast-types": "^0.13.3",
"copy-to-clipboard": "^3.3.1",
"dumi": "^1.0.10",
"father-build": "^1.17.2",
"gh-pages": "^3.0.0",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"yorkie": "^2.0.0"
}
}