-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
61 lines (61 loc) · 1.29 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
{
"name": "json-reactform",
"version": "0.1.14",
"description": "convert JSON schema into React component forms",
"main": "dist/json-reactform.cjs.js",
"module": "dist/json-reactform.esm.js",
"scripts": {
"build": "preconstruct build",
"release": "yarn build && yarn publish",
"format": "prettier --write ./**/*"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"loose": true
}
],
"@babel/preset-react"
]
},
"repository": {
"type": "git",
"url": "https://github.com/eFishery/json-reactform"
},
"keywords": [
"react",
"reactjs",
"form",
"generator",
"json",
"json-schema"
],
"author": "faizinnasrul21@gmail.com",
"license": "MIT",
"dependencies": {
"bootstrap": "^4.4.1",
"prop-types": "^15.7.2",
"react-datepicker": "^2.10.1",
"react-icons": "^3.8.0",
"react-select": "^3.0.8",
"reactstrap": "^8.2.0"
},
"peerDependencies": {
"react": "^16.12.0"
},
"devDependencies": {
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@preconstruct/cli": "^1.1.4",
"husky": "^4.2.2",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}