-
Notifications
You must be signed in to change notification settings - Fork 112
/
package.json
67 lines (67 loc) · 1.88 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
{
"name": "react-timer-hook",
"version": "3.0.8",
"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": {
"prepare": "npm run build:prod",
"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/cli": "^7.0.0-beta.40",
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.3",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"babel-loader": "9.1.2",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^4.0.1",
"react": "^16.8.0",
"react-dom": "16.8.0",
"styled-components": "^5.2.1",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3"
},
"peerDependencies": {
"react": ">=16.8.0"
}
}