-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.77 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
{
"name": "react-use-bireducer",
"author": "soywod <[email protected]>",
"description": "React hook for managing effectful reducers.",
"version": "1.1.1",
"license": "MIT",
"source": "src/index.ts",
"typings": "dist/index.d.ts",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"files": [
"dist/index.d.ts",
"dist/index.umd.js",
"dist/index.esm.js"
],
"devDependencies": {
"@jest/types": "^28.1.0",
"@size-limit/preset-small-lib": "^7.0.8",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/eslint": "^8.4.2",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"lint-staged": ">=10",
"microbundle": "^0.15.0",
"prettier": "^2.6.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"size-limit": "^7.0.8",
"ts-jest": "^28.0.3",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"typescript-eslint-language-service": "^5.0.0",
"typescript-language-server": "^0.10.1"
},
"peerDependencies": {
"react": "^16.8 || ^17 || ^18",
"react-dom": "^16.8 || ^17 || ^18"
},
"scripts": {
"prepare": "husky install",
"start": "microbundle watch",
"build": "microbundle --no-sourcemap -f esm,umd",
"test": "yarn jest",
"lint": "yarn eslint --ext ts src"
}
}