1
1
mirror of https://github.com/theoludwig/react-component-form.git synced 2024-07-17 07:30:13 +02:00
react-component-form/package.json
Divlo 69f12002c7
build(deps): update latest
BREAKING CHANGE: peerDependencies: `react@>=18.2.0`
2023-04-02 21:52:34 +02:00

76 lines
2.1 KiB
JSON

{
"name": "react-component-form",
"version": "0.0.0-development",
"public": true,
"type": "module",
"description": "Manage React Forms with ease.",
"author": "Divlo <contact@divlo.fr>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Divlo/react-component-form.git"
},
"keywords": [
"react-form",
"react-component-form"
],
"bugs": {
"url": "https://github.com/Divlo/react-component-form/issues"
},
"homepage": "https://react-component-form.vercel.app/",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "jest",
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint-cli2",
"lint:eslint": "eslint \".\"",
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\"",
"release": "semantic-release"
},
"peerDependencies": {
"react": ">=18.2.0"
},
"dependencies": {
"@sinclair/typebox": "0.26.8",
"ajv": "8.12.0",
"ajv-formats": "2.1.1"
},
"devDependencies": {
"@commitlint/cli": "17.5.1",
"@commitlint/config-conventional": "17.4.4",
"@testing-library/react": "14.0.0",
"@tsconfig/strictest": "2.0.0",
"@types/jest": "29.5.0",
"@types/react": "18.0.32",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"editorconfig-checker": "5.0.1",
"esbuild": "0.17.15",
"esbuild-jest": "0.5.0",
"eslint": "8.37.0",
"eslint-config-conventions": "8.0.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "46.0.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"markdownlint-cli2": "0.6.0",
"markdownlint-rule-relative-links": "1.1.2",
"prettier": "2.8.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"semantic-release": "21.0.1",
"tsup": "6.7.0",
"typescript": "5.0.3"
}
}