-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
74 lines (74 loc) · 1.86 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
{
"name": "react-flow-builder",
"version": "2.8.0",
"keywords": [
"flow",
"builder",
"process",
"react"
],
"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",
"release-alpha": "npm run build && npm publish --tag alpha",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"test": "umi-test",
"test:coverage": "umi-test --coverage"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/bytedance/flow-builder/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bytedance/flow-builder"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"devDependencies": {
"@arco-design/web-react": "^2.46.2",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.get": "^4.4.6",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/uuid": "^8.3.1",
"@umijs/test": "^3.0.5",
"antd": "^3 || ^4",
"babel-plugin-import": "^1.13.3",
"dumi": "^1.1.23",
"dumi-theme-default": "^1.1.24",
"father-build": "^1.17.2",
"gh-pages": "^3.0.0",
"lint-staged": "^10.0.7",
"prettier": "^2.2.1",
"react": ">=16",
"react-dom": ">=16",
"react-flow-builder": "2.8.0",
"yorkie": "^2.0.0"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"lodash.get": "^4.4.2",
"react-beautiful-dnd": "^13.1.1",
"systemjs": "^6.12.1",
"uuid": "^8.3.2"
}
}