-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.73 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
{
"name": "@react-hive/honey-form",
"version": "2.6.0",
"description": "The TS library to build the fully customized forms using React framework",
"keywords": [
"react",
"form",
"typescript"
],
"homepage": "https://github.com/React-Hive/honey-form",
"bugs": {
"url": "https://github.com/React-Hive/honey-form/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/React-Hive/honey-form.git"
},
"author": "Mykhailo Aliinyk <[email protected]>",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production webpack",
"build-docs": "NODE_ENV=production webpack -c webpack-docs.config.js",
"test": "jest --collect-coverage"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"!dist/**/__mocks__",
"!dist/**/__tests__",
"!dist/**/jest*"
],
"peerDependencies": {
"@mdx-js/react": "3.1.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@eslint/js": "9.18.0",
"@mdx-js/loader": "3.1.0",
"@testing-library/react": "16.1.0",
"@types/jest": "29.5.14",
"@types/mdx": "2.0.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"eslint": "9.18.0",
"eslint-plugin-react": "7.37.3",
"html-webpack-plugin": "5.6.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"ts-loader": "9.5.1",
"typescript": "5.7.3",
"typescript-eslint": "8.19.1",
"webpack": "5.97.1",
"webpack-cli": "6.0.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testMatch": [
"**/src/**/__tests__/**/*.tsx"
]
},
"browserslist": [
"defaults",
"not IE 11"
]
}