-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
98 lines (98 loc) · 3.47 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "feffery_antd_components",
"version": "0.3.13",
"description": "Best implementation of Antd components in Plotly Dash.",
"repository": {
"type": "git",
"url": "https://github.com/CNFeffery/feffery-antd-components.git"
},
"bugs": {
"url": "https://github.com/CNFeffery/feffery-antd-components/issues"
},
"homepage": "http://fac.feffery.tech/",
"main": "build/index.js",
"scripts": {
"start": "webpack-serve --config ./webpack.serve.config.js --open",
"build:js": "webpack --mode production",
"build:backends": "dash-generate-components ./src/lib/components feffery_antd_components --keep-prop-order ALL -p package-info.json --r-prefix 'feffery' --jl-prefix 'feffery'",
"build:backends-activated": "(. venv/bin/activate || venv\\scripts\\activate && npm run build:py_and_r)",
"build": "npm run build:js && npm run build:backends",
"build:activated": "npm run build:js && npm run build:backends-activated"
},
"author": "CNFeffery <[email protected]>",
"email": "[email protected]",
"license": "MIT",
"dependencies": {
"@ant-design/charts": "^1.4.2",
"@ant-design/compatible": "^5.0.0",
"@ant-design/happy-work-theme": "^1.0.0",
"@ant-design/icons": "^5.0.0",
"@ant-design/pro-components": "^2.6.49",
"@ant-design/pro-editor": "1.0.2",
"@formily/antd-v5": "^1.2.0",
"@formily/core": "^2.3.1",
"@formily/react": "^2.3.1",
"@plotly/webpack-dash-dynamic-import": "^1.3.0",
"ahooks": "^3.7.0",
"antd": "^5.22.4",
"antd-img-crop": "^4.2.3",
"color": "^4.2.3",
"dayjs": "^1.11.13",
"is-absolute-url": "4.0.1",
"md5": "2.3.0",
"nano-css": "^5.3.5",
"ramda": "0.26.1",
"react-draggable": "^4.4.5",
"react-fast-marquee": "1.3.1",
"react-highlight-words": "0.17.0",
"react-icons": "^4.11.0",
"react-text-loop": "2.3.0",
"react-use": "^17.4.0",
"uuid": "8.3.2",
"zustand": "^4.5.2"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.5.4",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"copyfiles": "^2.1.1",
"css-loader": "^3.0.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-react": "^7.14.2",
"less": "^3.13.1",
"less-loader": "^5.0.0",
"lodash": "^4.17.21",
"npm": "^6.1.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-docgen": "^5.4.3",
"react-dom": "^17.0.2",
"style-loader": "^0.23.1",
"styled-jsx": "^3.2.1",
"webpack": "4.36.1",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^3.3.6",
"webpack-serve": "3.1.0"
},
"babel": {
"presets": [
"@babel/preset-react",
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-transform-react-jsx"
]
},
"engines": {
"node": ">=8.11.0",
"npm": ">=6.1.0"
}
}