This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
forked from ginkgobioworks/react-json-schema-form-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.09 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
100
101
102
103
104
105
106
{
"name": "@ginkgo-bioworks/react-json-schema-form-builder",
"version": "2.6.2",
"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": ">=10"
},
"scripts": {
"clean": "rimraf node_modules coverage dist",
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"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": "cross-env CI=1 react-scripts test --env=jsdom --coverage --coverageDirectory=coverage/",
"test:watch": "react-scripts test --env=jsdom"
},
"peerDependencies": {
"bootstrap": "^4.6.0",
"react": "^16.x || ^17.x"
},
"files": [
"/dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-flowtype": "^5.7.2",
"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": "^5.1.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"flow-bin": "^0.159.0",
"flow-typed": "^3.2.1",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-scripts": "^4.0.3",
"rimraf": "^3.0.2"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"classnames": "^2.2.6",
"react-beautiful-dnd": "^13.0.0",
"react-jss": "^10.4.0",
"react-select": "^4.3.0",
"reactstrap": "^8.6.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js",
"!src/index.js"
],
"coverageReporters": [
"text",
"lcov"
]
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/ginkgobioworks/react-json-schema-form-builder/issues",
"email": "[email protected]"
}
}