-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
{
"name": "react-formatted-input-hook",
"version": "1.2.0",
"description": "Hooks to build formatted inputs the right way",
"author": "Nicolas Keller (https://github.com/nick-keller)",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/nick-keller/react-formatted-input-hook",
"homepage": "https://react-formatted-input-hook.netlify.app/",
"files": [
"dist/**/*"
],
"scripts": {
"start": "tsc",
"build": "rimraf ./dist && tsc",
"format": "prettier --ignore-path .gitignore --write .",
"lint": "eslint src/.",
"test": "jest"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.0.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.0.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.0",
"typescript": "^4.6.4"
}
}