-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
74 lines (74 loc) · 2.03 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
{
"name": "react-hook-form-jsonschema",
"version": "0.2.0",
"description": "Wrapper arround react-hook-form to create forms from a JSON schema.",
"main": "output/index.cjs.js",
"module": "output/index.esm.js",
"types": "output/index.d.ts",
"files": [
"output"
],
"author": "Helena Steck <[email protected]>",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@testing-library/react-hooks": "^7.0.1",
"@types/react": "^16.8.22",
"@types/react-intl": "^2.3.18",
"@vtex/test-tools": "^0.3.2",
"@vtex/tsconfig": "^0.2.0",
"eslint": "^6.8.0",
"eslint-config-vtex-react": "^5.1.0",
"husky": "^4.2.0",
"mutationobserver-shim": "^0.3.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rollup": "^1.29.0",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"typescript": "^3.7.4"
},
"jest": {
"setupFilesAfterEnv": [
"./setupTest.js"
]
},
"scripts": {
"build": "rm -rf output && rollup -c",
"build:watch": "rollup -cw",
"test": "vtex-test-tools test",
"test:watch": "vtex-test-tools test --watch",
"lint": "tsc --noEmit && eslint --quiet --fix --ext ts,tsx src/",
"prepublishOnly": "run-s lint test build"
},
"husky": {
"hooks": {
"pre-commit": "run-s lint",
"pre-push": "set -o pipefail && git stash push --keep-index -m 'husky-pre-commit' && run-s test && git stash pop || true"
}
},
"dependencies": {
"react-hook-form": "^4.4.4"
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"repository": "[email protected]:vtex/react-hook-form-jsonschema.git",
"keywords": [
"react",
"hooks",
"json-schema",
"jsonschema",
"form",
"form-validation",
"validation",
"typescript",
"react-hooks"
],
"homepage": "https://github.com/vtex/react-hook-form-jsonschema"
}