-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.01 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "use-list-selection-management-hook",
"version": "1.0.1",
"description": "A React hook for managing list selection status",
"main": "dist/index.js",
"repository": {
"url": "https://github.com/wind198/use-list-selection-management"
},
"scripts": {
"test": "jest --silent=false",
"build-package": "tsc -w",
"build-package-watch": "tsc -w",
"lint": "eslint --ext js,ts,tsx,stories src"
},
"keywords": [
"React",
"react",
"typescript",
"list",
"list selection"
],
"author": "tuanbk1908@gmail.com",
"license": "ISC",
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
},
"devDependencies": {
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"eslint": "^8.33.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.4.1",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"react-dom": "^18.2.0"
},
"peerDependencies": {
"react": "^18.2.0"
},
"dependencies": {
"react": "^18.2.0"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:react-hooks/recommended"
],
"overrides": [
{
"files": "",
"plugins": [
"unused-imports"
],
"rules": {
"no-unused-vars": "off",
"unused-imports/no-unused-imports": "warn",
"unused-imports/no-unused-vars": [
"warn",
{
"vars": "all",
"varsIgnorePattern": "^_",
"args": "after-used",
"argsIgnorePattern": "^_"
}
]
}
}
]
}
}