This repository has been archived by the owner on Jan 15, 2023. It is now read-only.
generated from nekogd/react-hook-npm-publish-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.79 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
{
"name": "@prodigy7kx/usehooks-ts",
"version": "1.0.1",
"description": "React utility hooks",
"author": "Prodigy7kX",
"license": "MIT",
"main": "dist/index.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "jest"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.([tj]sx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
],
"testEnvironment": "jsdom"
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"devDependencies": {
"@testing-library/react": "^13.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^28.1.6",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-test-renderer": "^18.0.0",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rollup": "^2.77.0",
"rollup-plugin-sass": "^1.2.12",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"files": [
"dist"
],
"keywords": [
"react",
"react hooks",
"typescript",
"npm"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Prodigy7kX/usehooks-ts.git"
},
"bugs": {
"url": "https://github.com/Prodigy7kX/usehooks-ts/issues"
},
"homepage": "https://github.com/Prodigy7kX/usehooks-ts#readme"
}