-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.19 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
{
"name": "formative",
"version": "2.0.2",
"main": "dist/index.js",
"module": "dist/formative.esm.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"repository": "github:hally9k/formative",
"contributors": [
"Hal Smith Stevens <[email protected]>"
],
"keywords": [
"react",
"forms",
"form",
"form-validation",
"react-hooks",
"typescript",
"hooks",
"typesafe",
"react hooks"
],
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"lint": "tsdx lint"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"lodash": "^4.17.15",
"redux": "^4.0.4",
"typescript": "^3.6.3"
},
"devDependencies": {
"@types/lodash": "^4.14.141",
"@types/react": "^16.9.3",
"@types/react-dom": "^16.9.1",
"@types/yup": "^0.26.24",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"tsdx": "^0.9.3",
"tslib": "^1.10.0",
"yup": "^0.27.0"
}
}