Skip to content

Commit cd72fb6

Browse files
committed
fix: move @types/hoist-non-react-statics from deps to devDeps
1 parent 6b8a5a4 commit cd72fb6

File tree

1 file changed

+37
-37
lines changed

1 file changed

+37
-37
lines changed

package.json

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,6 @@
22
"name": "formsy-semantic-ui-react",
33
"version": "2.3.3",
44
"description": "Formsy-React wrappers for Semantic-Ui-React's form Components",
5-
"repository": {
6-
"type": "git",
7-
"url": "https://github.com/zabute/formsy-semantic-ui-react"
8-
},
9-
"author": {
10-
"name": "Ardamis Yeshak",
11-
"email": "arde987@gmail.com",
12-
"url": "https://github.com/zabute"
13-
},
14-
"license": "MIT",
15-
"bugs": {
16-
"url": "https://github.com/zabute/formsy-semantic-ui-react/issues"
17-
},
185
"keywords": [
196
"formsy-react",
207
"semantic-ui",
@@ -25,27 +12,52 @@
2512
"react-component",
2613
"form-validation"
2714
],
15+
"bugs": {
16+
"url": "https://github.com/zabute/formsy-semantic-ui-react/issues"
17+
},
18+
"repository": {
19+
"type": "git",
20+
"url": "https://github.com/zabute/formsy-semantic-ui-react"
21+
},
22+
"license": "MIT",
23+
"author": {
24+
"name": "Ardamis Yeshak",
25+
"email": "arde987@gmail.com",
26+
"url": "https://github.com/zabute"
27+
},
2828
"main": "dist/index.js",
2929
"module": "dist/formsy-semantic-ui-react.esm.js",
3030
"typings": "dist/index.d.ts",
3131
"files": [
3232
"dist",
3333
"src"
3434
],
35-
"engines": {
36-
"node": ">=10"
37-
},
3835
"scripts": {
39-
"start": "tsdx watch",
4036
"build": "tsdx build",
41-
"test": "jest --passWithNoTests",
4237
"lint": "tsdx lint",
4338
"prepare": "tsdx build",
44-
"version": "auto-changelog -p && git add CHANGELOG.md",
45-
"release": "np"
39+
"release": "np",
40+
"start": "tsdx watch",
41+
"test": "jest --passWithNoTests",
42+
"version": "auto-changelog -p && git add CHANGELOG.md"
43+
},
44+
"husky": {
45+
"hooks": {
46+
"pre-commit": "tsdx lint"
47+
}
48+
},
49+
"prettier": {
50+
"arrowParens": "always",
51+
"printWidth": 80,
52+
"semi": true,
53+
"singleQuote": true,
54+
"trailingComma": "es5"
55+
},
56+
"resolutions": {
57+
"@types/react": "17",
58+
"@types/react-dom": "17"
4659
},
4760
"dependencies": {
48-
"@types/hoist-non-react-statics": "^3.3.1",
4961
"formsy-react": "^2.0.0",
5062
"hoist-non-react-statics": "^3.3.2",
5163
"semantic-ui-react": "^2.0.0"
@@ -54,6 +66,7 @@
5466
"@testing-library/jest-dom": "^5.16.5",
5567
"@testing-library/react": "12.1.5",
5668
"@testing-library/user-event": "^14.4.3",
69+
"@types/hoist-non-react-statics": "^3.3.1",
5770
"@types/jest": "^29.2.2",
5871
"@types/react": "^16.14.43",
5972
"@types/react-dom": "^16.9.19",
@@ -70,22 +83,9 @@
7083
"typescript": "^5.1.6"
7184
},
7285
"peerDependencies": {
73-
"react": ">=16 || >=17"
74-
},
75-
"resolutions": {
76-
"@types/react": "17",
77-
"@types/react-dom": "17"
78-
},
79-
"husky": {
80-
"hooks": {
81-
"pre-commit": "tsdx lint"
82-
}
86+
"react": ">=16 || >=17 || >= 18"
8387
},
84-
"prettier": {
85-
"printWidth": 80,
86-
"semi": true,
87-
"singleQuote": true,
88-
"trailingComma": "es5",
89-
"arrowParens": "always"
88+
"engines": {
89+
"node": ">=10"
9090
}
9191
}

0 commit comments

Comments
 (0)