react-hooks-dynamic-form
Version:
Dynamic form with react hooks
70 lines (69 loc) • 1.78 kB
JSON
{
"name": "react-hooks-dynamic-form",
"version": "1.1.0",
"description": "Dynamic form with react hooks",
"keywords": [
"react",
"typescript",
"hooks",
"react-hooks",
"form",
"form-validation",
"form-generation",
"storybook"
],
"author": "vivo87 <vongocviet@gmail.com>",
"homepage": "https://github.com/vivo87/react-hooks-dynamic-form",
"license": "ISC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vivo87/react-hooks-dynamic-form.git"
},
"scripts": {
"install:peer": "npm link ../rhdf-demo/node_modules/react && npm link ../rhdf-demo/node_modules/react-dom",
"start": "concurrently \"tsc -p tsconfig.dev.json\" \"echo 'any other compiler (css ...)'\"",
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf ./cache ./dist",
"prepare": "npm run build",
"version": "git add -A .",
"postversion": "git push && git push --tags",
"test": "jest",
"test-commit": "jest --bail --findRelatedTests"
},
"bugs": {
"url": "https://github.com/vivo87/react-hooks-dynamic-form/issues"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.12.8",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"concurrently": "^5.0.0",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^3.7.2"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": "(/src/.*.(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}