-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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
{
"name": "react-hooks-time-limit",
"version": "1.0.5",
"description": "React Hook for get seconds to the target time",
"scripts": {
"build": "rimraf ./lib && tsc",
"prepublishOnly": "npm run build"
},
"author": "Shu Nakashima",
"license": "MIT",
"bugs": {
"url": "https://github.com/shu20031026/react-hooks-time-limit/issues"
},
"homepage": "https://github.com/shu20031026/react-hooks-time-limit#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/shu20031026/react-hooks-time-limit.git"
},
"keywords": [
"react",
"typescript",
"hooks",
"target-time",
"hooks-api-react"
],
"main": "lib/index.js",
"types": "lib/typescript/index.d.ts",
"files": [
"/src",
"/lib",
"/README.md",
"/LICENSE"
],
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0"
},
"devDependencies": {
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.3.1",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"jest-dom": "^4.0.0",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}