react-forminate
Version:
React.js + Typescript package that creates dynamic UI forms based on the JSON schema
100 lines (99 loc) • 2.82 kB
JSON
{
"name": "react-forminate",
"version": "1.1.0-beta.12",
"description": "React.js + Typescript package that creates dynamic UI forms based on the JSON schema",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"/dist",
"/dist/*.css"
],
"style": "dist/react-forminate.css",
"scripts": {
"build": "tsc && vite build",
"format": "prettier --write --parser typescript '**/*.{ts,tsx}'",
"lint": "eslint . --ext .ts,.tsx --fix",
"test": "vitest run --passWithNoTests",
"test-watch": "vitest",
"test:ui": "vitest --ui",
"test:preview": "npx vite preview --outDir html",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "npm run build",
"analyze": "tsc && vite build && npx vite-bundle-visualizer"
},
"keywords": [
"react",
"form",
"dynamic-form",
"form-builder",
"validation",
"front-end",
"form-generator",
"typescript",
"nextjs"
],
"author": {
"name": "Saeed Panahi",
"email": "panahi.projects@gmail.com"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.6",
"@storybook/addon-essentials": "^8.6.9",
"@storybook/addon-interactions": "^8.6.9",
"@storybook/addon-onboarding": "^8.6.9",
"@storybook/blocks": "^8.6.9",
"@storybook/react": "^8.6.9",
"@storybook/react-vite": "^8.6.9",
"@storybook/test": "^8.6.9",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.13.12",
"@types/react": "^19.0.12",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"@vitest/ui": "^3.0.9",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.4",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-storybook": "^0.11.6",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"storybook": "^8.6.9",
"typescript": "^5.8.2",
"vite": "^6.2.3",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.0.9"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run format",
"npm run lint"
],
"src/**/!(*components/DynamicFormComponents*)*.{ts,tsx,js}": [
"npm run test"
]
},
"repository": {
"type": "git",
"url": "https://github.com/panahi-projects/react-forminate.git"
},
"homepage": "https://react-forminate.netlify.app/",
"dependencies": {
"react-loading-skeleton": "^3.5.0"
}
}