-
Notifications
You must be signed in to change notification settings - Fork 126
/
package.json
94 lines (94 loc) · 2.21 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
{
"name": "formsy-react",
"version": "2.3.2",
"description": "A form input builder and validator for React",
"keywords": [
"form",
"forms",
"formsy",
"react",
"react-component",
"validation"
],
"license": "MIT",
"homepage": "https://github.com/formsy/formsy-react",
"bugs": "https://github.com/formsy/formsy-react/issues",
"repository": {
"type": "git",
"url": "https://github.com/formsy/formsy-react.git"
},
"author": "Christian Alfoni and the Formsy Authors",
"main": "dist/index.js",
"module": "dist/formsy-react.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "tsdx build",
"build:clean": "rm -r dist/* || true",
"changelog": "auto-changelog",
"deploy": "np",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md}\"",
"lint": "tsdx lint",
"prepublishOnly": "tsdx build",
"preversion": "npm run lint",
"start": "tsdx watch",
"test": "tsdx test --passWithNoTests"
},
"dependencies": {
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"prop-types": "^15.8.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.5.12",
"@types/lodash": "4.14.188",
"@types/prop-types": "^15.7.12",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"auto-changelog": "^2.4.0",
"coveralls": "^3.1.1",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^4.2.1",
"np": "^9.2.0",
"prettier": "^2.8.8",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tsdx": "^0.14.1",
"tslib": "^2.6.3",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"standard-version": {
"skip": {
"tag": true
}
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"proseWrap": "always",
"trailingComma": "all"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.tsx",
"src/**/*.ts"
]
}
}