-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
84 lines (84 loc) · 2.44 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
{
"name": "@flipbyte/formik-json",
"version": "0.6.2",
"description": "formik-json is a wrapper for Formik to easily create forms using JSON / Javascript Object for defining the elements",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"repository": {
"type": "git",
"url": "https://github.com/flipbyte/formik-json-schema.git"
},
"scripts": {
"build": "nwb build-react-component --copy-files",
"clean": "nwb clean-module && nwb clean-demo",
"prepublishOnly": "npm run build",
"start": "nwb serve-react-demo",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server",
"lint-md": "remark .",
"publish-demo": "npm run build && gh-pages -d demo/dist"
},
"dependencies": {
"@flipbyte/when-condition": "^0.6.0",
"@flipbyte/yup-schema": "^0.1.5",
"codemirror": "^5.41.0",
"formik": "^2.1.4",
"react-autosuggest": "^9.4.3",
"react-codemirror2": "^7.0.0",
"react-dropzone": "^10.2.1",
"react-quill": "^1.3.3",
"react-select": "^2.3.0",
"react-sortable-hoc": "^1.11.0",
"react-switch": "^5.0.1",
"shallowequal": "^1.1.0"
},
"peerDependencies": {
"lodash": "^4.17.13",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"prop-types": "^15.6.2",
"@fortawesome/fontawesome-free": "^5.6.3"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.6.3",
"axios": "^0.21.1",
"babel-plugin-transform-import-styles": "0.0.11",
"bootstrap": "^4.3.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"gh-pages": "^2.0.1",
"inferno": "^5.0.0",
"load-styles": "^2.0.0",
"nwb": "0.23.x",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"remark-lint": "^6.0.4"
},
"author": "",
"homepage": "",
"license": "MIT",
"keywords": [
"react-json-form",
"react-json-schema-form",
"json-schema-form",
"json-form",
"formik-json",
"formik-schema",
"schema-form",
"form",
"validation",
"bootstrap"
],
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}