-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.78 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.78 KB
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
{
"name": "@fadioit/react-form",
"version": "0.1.0",
"description": "React utilities and components for managing forms",
"keywords": [
"react",
"reactjs",
"react-form",
"form"
],
"author": "François de Campredon <francois.de.campredon@gmail.com>",
"license": "MIT",
"repository": "github:FadioIT/react-form",
"bugs": "https://github.com/FadioIT/react-form/issues",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "./types/index.d.ts",
"files": [
"lib/**/*.js",
"esm/**/*.js",
"types/**/*.js"
],
"scripts": {
"prepublish": "yarn build",
"build": "tsc && tsc -p tsconfig.es6.json",
"lint": "eslint ./src/**/*.ts ./src/**/*.tsx",
"test": "yarn lint && jest"
},
"peerDependencies": {
"react": "^16.9.0"
},
"dependencies": {
"@types/lodash": "^4.14.136",
"@types/react": "^16.9.2",
"lodash": "^4.17.15"
},
"devDependencies": {
"@testing-library/react-hooks": "^2.0.1",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.4",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.1",
"husky": ">=1",
"jest": "^24.9.0",
"lint-staged": ">=8",
"prettier": "^1.18.2",
"react": "^16.9.0",
"react-test-renderer": "^16.9.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(ts|tsx|js)": [
"eslint --fix",
"git add"
]
}
}