-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.39 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
{
"version": "0.5.7",
"packageManager": "[email protected]",
"license": "Apache-2.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests --watchAll",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
},
"name": "@ginger.io/react-use-form",
"author": "Ginger",
"module": "dist/react-use-form.esm.js",
"devDependencies": {
"@testing-library/react-hooks": "^5.0.2",
"@types/jest": "^26.0.4",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.get": "^4.4.6",
"@types/lodash.set": "^4.3.6",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"eslint-config-react-app": "^7.0.1",
"husky": "^4.3.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"tsdx": "^0.14.1",
"tslib": "^2.0.1",
"typescript": "^4.0.3"
},
"dependencies": {
"immer": "^9.0.6",
"lodash.debounce": "^4.0.8",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2"
},
"resolutions": {
"eslint": "7.17.0"
}
}