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

80 lines
2.2 KiB
JSON
Raw Normal View History

2020-08-04 16:22:31 +02:00
{
"name": "react-component-form",
2021-06-17 19:32:56 +02:00
"version": "0.0.0-development",
2022-02-19 17:18:13 +01:00
"public": true,
"type": "module",
2020-08-04 16:22:31 +02:00
"description": "Manage React Forms with ease.",
2023-07-02 16:27:26 +02:00
"author": "Théo LUDWIG <contact@theoludwig.fr>",
2020-08-04 16:22:31 +02:00
"license": "MIT",
2020-08-04 16:49:14 +02:00
"repository": {
"type": "git",
2023-07-02 16:27:26 +02:00
"url": "https://github.com/theoludwig/react-component-form.git"
2020-08-04 16:49:14 +02:00
},
"keywords": [
"react-form",
"react-component-form"
],
"bugs": {
2023-07-02 16:27:26 +02:00
"url": "https://github.com/theoludwig/react-component-form/issues"
2020-08-04 16:49:14 +02:00
},
"homepage": "https://react-component-form.vercel.app/",
2023-05-13 18:24:44 +02:00
"main": "build/index.js",
"types": "build/index.d.ts",
2021-06-17 18:48:19 +02:00
"files": [
2023-05-13 18:24:44 +02:00
"build"
2021-06-17 18:48:19 +02:00
],
"publishConfig": {
"access": "public",
"provenance": true
},
2020-08-04 16:22:31 +02:00
"scripts": {
"build": "tsup",
"test": "jest",
2021-06-17 18:48:19 +02:00
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
2022-08-25 22:51:40 +02:00
"lint:markdown": "markdownlint-cli2",
2023-12-26 22:24:32 +01:00
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore",
"lint:prettier": "prettier . --check",
2021-06-17 19:32:56 +02:00
"release": "semantic-release"
2020-08-04 16:22:31 +02:00
},
"peerDependencies": {
"react": ">=18.2.0"
2020-10-26 02:56:36 +01:00
},
2022-08-25 23:24:40 +02:00
"dependencies": {
2023-12-26 22:24:32 +01:00
"@sinclair/typebox": "0.32.3",
2023-01-10 21:23:32 +01:00
"ajv": "8.12.0",
2022-08-25 23:24:40 +02:00
"ajv-formats": "2.1.1"
},
2021-06-17 18:48:19 +02:00
"devDependencies": {
2023-12-26 22:24:32 +01:00
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@testing-library/react": "14.1.2",
"@tsconfig/strictest": "2.0.2",
2023-12-26 22:24:32 +01:00
"@types/jest": "29.5.11",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "6.16.0",
"@typescript-eslint/parser": "6.16.0",
"editorconfig-checker": "5.1.2",
"esbuild": "0.19.10",
2022-08-25 23:24:40 +02:00
"esbuild-jest": "0.5.0",
2023-12-26 22:24:32 +01:00
"eslint": "8.56.0",
"eslint-config-conventions": "13.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.2",
2022-11-08 11:28:57 +01:00
"eslint-plugin-promise": "6.1.1",
2023-12-26 22:24:32 +01:00
"eslint-plugin-unicorn": "50.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
2023-12-26 22:24:32 +01:00
"markdownlint-cli2": "0.11.0",
"markdownlint-rule-relative-links": "2.1.2",
"prettier": "3.1.1",
2022-08-25 22:51:40 +02:00
"react": "18.2.0",
"react-dom": "18.2.0",
2023-12-26 22:24:32 +01:00
"semantic-release": "22.0.12",
"tsup": "8.0.1",
"typescript": "5.3.3"
2020-08-04 16:49:14 +02:00
}
2020-08-04 16:22:31 +02:00
}