-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.58 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.58 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
40
41
42
43
44
45
46
47
{
"name": "@data-driven-forms/blueprint-component-mapper",
"version": "4.1.14",
"description": "BlueprintJS 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",
"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"
},
"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/blueprint-component-mapper"
},
"keywords": [
"react",
"forms",
"javascript"
],
"devDependencies": {
"@blueprintjs/core": "^4.2.1",
"@blueprintjs/datetime": "^4.1.4",
"@blueprintjs/select": "^4.1.4"
},
"peerDependencies": {
"@blueprintjs/core": "^4.2.1",
"@blueprintjs/datetime": "^4.1.4",
"@blueprintjs/select": "^4.1.4",
"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": "*",
"clsx": "^1.1.0",
"lodash": "^4.18.1",
"react-jss": "^10.5.0"
}
}