forked from ginkgobioworks/react-json-schema-form-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.05 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
99
{
"name": "@ginkgo-bioworks/react-json-schema-form-builder",
"version": "2.10.0",
"description": "React Component for visually configuring a JSON Schema-based form",
"author": {
"name": "Nathan Alam",
"email": "[email protected]",
"url": "https://github.com/nathanalam"
},
"license": "Apache-2.0",
"repository": "ginkgobioworks/react-json-schema-form-builder",
"keywords": [
"react",
"form",
"json-schema",
"visual"
],
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.js",
"engines": {
"node": ">=14"
},
"scripts": {
"clean": "rimraf node_modules coverage dist",
"build": "microbundle --no-compress --format modern,cjs --jsx React.createElement",
"start": "microbundle watch --no-compress --format modern,cjs --jsx React.createElement",
"prettier": "prettier -w src && prettier -w example/src",
"flow": "flow",
"flow:install-types": "flow-typed install",
"test": "run-s test:unit test:prettier test:lint test:flow",
"test:flow": "flow",
"test:lint": "eslint .",
"test:prettier": "prettier -c src && prettier -c example/src",
"test:unit": "jest --env=jsdom --coverage --coverageDirectory=coverage/",
"test:watch": "jest --watch --env=jsdom"
},
"peerDependencies": {
"bootstrap": "^4.6.0 || ^5.1.3",
"react": "^16.x || ^17.x || ^18.x"
},
"files": [
"/dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-flow": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"babel-jest": "^29.0.3",
"bootstrap": "^5.1.3",
"coveralls": "^3.1.0",
"enzyme": "^3.11.0",
"@cfaester/enzyme-adapter-react-18": "0.5.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"flow-bin": "^0.186.0",
"flow-typed": "^3.2.1",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.2",
"microbundle": "^0.15.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reactstrap": "^9.0.0",
"rimraf": "^3.0.2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^5.15.3 || ^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.14 || ^0.2.0",
"classnames": "^2.2.6",
"react-beautiful-dnd": "^13.0.0",
"react-jss": "^10.4.0",
"react-select": "^5.0.0",
"reactstrap": "^8.10.0 || ^9.0.0"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/ginkgobioworks/react-json-schema-form-builder/issues",
"email": "[email protected]"
}
}