-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
92 lines (92 loc) · 3.07 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
88
89
90
91
92
{
"name": "use-force-update",
"version": "1.0.11",
"author": "Charles Stover <[email protected]>",
"description": "React Hook to force your function component to update.",
"homepage": "https://github.com/CharlesStover/use-force-update#readme",
"license": "MIT",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"packageManager": "[email protected]",
"repository": "github:CharlesStover/use-force-update",
"type": "module",
"types": "./dist/types/index.d.ts",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/CharlesStover/use-force-update/issues"
},
"directories": {
"lib": "src"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
}
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/CharlesStover"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"eslint": "eslint '**/*'",
"eslint:fix": "eslint '**/*' --fix",
"jest": "jest --runInBand",
"jest:watch": "jest --coverage=false --runInBand --watch",
"prepack": "yarn run rollup",
"prepublish": "yarn run eslint && yarn run jest",
"rollup": "rollup --config",
"rollup:watch": "rollup --config --watch"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@monorepo-template/eslint-config-react-fixable": "^1.1.1",
"@monorepo-template/eslint-config-react-strict": "^1.1.0",
"@monorepo-template/eslint-config-react-typescript": "^1.0.0",
"@monorepo-template/eslint-config-typescript": "^1.1.2",
"@monorepo-template/eslint-config-typescript-fixable": "^1.1.0",
"@monorepo-template/eslint-config-typescript-strict": "^1.1.0",
"@monorepo-template/jest-module-preset": "^1.1.2",
"@monorepo-template/rollup-config": "^2.4.1",
"@monorepo-template/tsconfig": "^1.1.2",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@yarnpkg/sdks": "^3.0.0-rc.35",
"babel-jest": "^29.3.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jsx-a11y": "^6.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.8.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.9.1",
"rollup-plugin-insert": "^1.3.2",
"rollup-plugin-typescript2": "^0.34.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": ">=16.8.0"
}
}