-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.4 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
83
{
"name": "@toy-box/flow-builder",
"version": "0.1.37",
"private": false,
"dependencies": {
"@ahooksjs/use-request": "^2.8.10",
"@airclass/icons": "^4.3.4",
"@antv/x6": "^1.20.0",
"@antv/x6-react-shape": "^1.4.1",
"@craco/craco": "^6.1.2",
"@formily/antd": "^2.0.0",
"@formily/core": "^2.0.0",
"@formily/react": "^2.0.0",
"@formily/reactive": "^2.0.0",
"@formily/reactive-react": "^2.0.0",
"@formily/shared": "^2.0.0",
"@monaco-editor/react": "^4.3.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@toy-box/expression-editor": "^1.0.10",
"@toy-box/flow-graph": "^1.0.35",
"@toy-box/flow-nodes": "^1.0.35",
"@toy-box/form-formula": "^1.0.26",
"@toy-box/meta-components": "^2.0.23",
"@toy-box/meta-schema": "^2.0.15",
"@toy-box/toybox-shared": "^2.0.15",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^16.14.10",
"@types/react-dom": "^16.9.13",
"antd": "^4.18.8",
"axios": "^0.22.0",
"braft-editor": "^2.3.9",
"classnames": "^2.3.1",
"codemirror": "^5.62.0",
"craco-antd": "^1.19.0",
"craco-less": "^1.17.1",
"dumi": "^1.1.38",
"father-build": "^1.20.5-0",
"immutability-helper": "^3.1.1",
"lodash.get": "^4.4.2",
"monaco-editor": "^0.30.1",
"react": "^16.14.0",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0.0",
"react-dom": "^16.14.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"typescript": "^4.1.2",
"universal-cookie": "^4.0.4",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"eject": "react-scripts eject",
"dev": "dumi dev",
"build:dumi": "father-build",
"release": "npm run build:dumi && npm publish --access public --registry https://registry.npmjs.org"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"devDependencies": {
"@types/draft-js": "^0.11.4",
"@types/immutability-helper": "^2.6.3",
"@types/lodash.get": "^4.4.6",
"braft-convert": "^2.3.0"
}
}