-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
100 lines (100 loc) · 3.05 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "react-fluent-form",
"version": "1.7.0",
"description": "Describe your forms fluently",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"author": "Yusuf Aran <[email protected]>",
"license": "MIT",
"repository": "ysfaran/react-fluent-form",
"homepage": "https://github.com/ysfaran/react-fluent-form/",
"bugs": {
"url": "https://github.com/ysfaran/react-fluent-form/issues"
},
"scripts": {
"prepare": "husky install",
"clean:dist": "rimraf dist",
"clean:tmp": "rimraf tmp",
"clean": "npm-run-all clean:dist clean:tmp",
"build": "rollup -c",
"build:watch": "rollup -c -w",
"build:package": "npm-run-all clean build clean:tmp",
"prettier-watch": "onchange \"**/*\" --exclude dist/**/* --exclude node_modules/**/* -- prettier --write {{changed}}",
"start": "npm-run-all --parallel build:watch prettier-watch",
"test": "jest",
"test:watch": "jest --watchAll",
"test:lint": "eslint \"src/**\" \"test/**\"",
"test:coverage": "jest --coverage",
"test:package": "npm-run-all test:lint test:coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"files": [
"dist"
],
"peerDependencies": {
"react": "^16.8.0 || ^17.0.1 || ^18.2.0",
"react-dom": "^16.8.0 || ^17.0.1 || ^18.2.0",
"yup": "^0.32.11 || ^1.3.2",
"zod": "^3.22.4"
},
"peerDependenciesMeta": {
"yup": {
"optional": true
},
"zod": {
"optional": true
}
},
"devDependencies": {
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@rollup/plugin-babel": "^6.0.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.11",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/yup": "^0.29.14",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"babel-jest": "^29.7.0",
"coveralls": "^3.1.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "^4.1.5",
"onchange": "7.1.0",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^5.0.5",
"rollup": "^4.8.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3",
"yup": "^1.3.2",
"zod": "^3.22.4"
},
"keywords": [
"react",
"form",
"hook",
"validation",
"fluent"
]
}