-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.48 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.48 KB
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
{
"name": "@data-driven-forms/ant-component-mapper",
"version": "4.1.17",
"description": "Ant Design React component mapper for Data Driven Forms.",
"main": "index.js",
"module": "esm/index.js",
"typings": "index.d.ts",
"license": "Apache-2.0",
"scripts": {
"start": "webpack-dev-server --config ./config/webpack.config.js --open --hot",
"build": "npm run build:cjs && npm run build:esm && npm run build:typings && npm run build:packages && npm run build:css",
"build:cjs": "BABEL_ENV=cjs babel src --out-dir ./ --ignore \"src/tests/*\"",
"build:esm": "BABEL_ENV=esm babel src --out-dir ./esm --ignore \"src/tests/*\"",
"build:typings": "node ../../scripts/generate-typings.js",
"build:packages": "node ../../scripts/generate-packages.js",
"vendor": "webpack --env vendor --config ./config/webpack.config.js",
"build:css": "node ../../scripts/copy-css.js"
},
"homepage": "https://data-driven-forms.org/",
"bugs": "https://github.com/data-driven-forms/react-forms/issues",
"repository": {
"type": "git",
"url": "https://github.com/data-driven-forms/react-forms",
"directory": "packages/ant-component-mapper"
},
"devDependencies": {
"antd": "^4.2.0"
},
"peerDependencies": {
"@data-driven-forms/react-form-renderer": "*",
"antd": "^4.2.0",
"react": "^17.0.2 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.2 || ^18.0.0 || ^19.0.0"
},
"dependencies": {
"@data-driven-forms/common": "*",
"lodash": "^4.18.1"
}
}