-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.68 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-hooks",
"version": "1.0.0",
"description": "react hooks",
"keywords": [
"react",
"react-hooks"
],
"author": "Bobby",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rimraf ./dist",
"lint:fix": "eslint './src/**/*.{js,ts}' --fix",
"prepare": "husky install"
},
"dependencies": {
"@fingerprintjs/fingerprintjs": "^4.5.1",
"blobity": "^0.2.3",
"copy-to-clipboard": "^3.3.2",
"js-cookie": "^3.0.1",
"lodash-es": "^4.17.21",
"qs": "^6.11.0",
"swr": "^1.3.0",
"typed.js": "^2.0.16"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/js-cookie": "^3.0.2",
"@types/lodash-es": "^4.17.6",
"@types/node": "^20.4.0",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.9.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.3"
},
"lint-staged": {
"src/**/*.{js,jsx,ts.tsx}": [
"pnpm lint:fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}