-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
104 lines (104 loc) · 3.1 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
{
"name": "@ginkgo-bioworks/react-json-schema-form-builder",
"version": "3.0.1",
"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.mjs",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"clean": "rimraf node_modules coverage dist",
"build": "rollup --bundleConfigAsCjs -c rollup.config.js",
"watch": "rollup --bundleConfigAsCjs -w -c rollup.config.js",
"prettier": "prettier -w src",
"test": "run-s test:unit test:prettier test:lint test:ts",
"test:lint": "eslint .",
"test:ts": "tsc",
"test:prettier": "prettier -c 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-react": "^7.16.7",
"@babel/preset-typescript": "^7.21.5",
"@cfaester/enzyme-adapter-react-18": "0.8.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@jest/globals": "^29.5.0",
"@types/enzyme": "^3.10.13",
"@types/jest": "^29.5.1",
"@types/node": "^22.8.6",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"babel-jest": "^29.0.3",
"bootstrap": "^5.1.3",
"enzyme": "^3.11.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.12.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reactstrap": "^9.0.0",
"rimraf": "^6.0.1",
"rollup-plugin-ts": "^3.4.5",
"typescript": "^5.0.4"
},
"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",
"@hello-pangea/dnd": "^17.0.0",
"classnames": "^2.2.6",
"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]"
}
}