-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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
{
"name": "react-hooks",
"version": "1.0.0",
"description": "A collection of React hooks written by Boris Petrov (Github: @borispetrovdev) ",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/borispetrovdev/react-hooks.git"
},
"keywords": [
"React",
"hooks",
"utilities",
"useEffect",
"useState"
],
"author": "Boris Petrov",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/borispetrovdev/react-hooks/issues"
},
"homepage": "https://github.com/borispetrovdev/react-hooks#readme",
"dependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@types/react": "^18.0.27",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
}
}