forked from amrlabib/react-timer-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.9 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
{
"name": "react-timer-hook",
"version": "3.0.5",
"description": "React timer hook is a custom react hook built to handle timers(countdown), stopwatch and time logic/state in your react component.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:demo": "rm -rf ./docs && webpack --config webpack.dev.js && webpack-dev-server --open --config webpack.dev.js",
"build:prod": "rm -rf ./dist && webpack --config webpack.prod.js",
"lint": "node_modules/.bin/eslint src"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/amrlabib/react-timer-hook.git"
},
"keywords": [
"react",
"react-hook",
"react-hooks",
"timer",
"countdown",
"time",
"clock",
"useTimer",
"useStopwatch",
"useTime",
"react-native"
],
"author": "amrlabib",
"license": "ISC",
"bugs": {
"url": "https://github.com/amrlabib/react-timer-hook/issues"
},
"homepage": "https://github.com/amrlabib/react-timer-hook#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.3",
"babel-loader": "7",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"copy-webpack-plugin": "^4.6.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^4.0.1",
"react": "^16.8.0",
"react-dom": "16.8.0",
"styled-components": "^5.2.1",
"webpack": "^4.24.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}