-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 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
{
"name": "use-local-slice",
"description": "A react hook to use reducers for local state in a typesafe way, with an API like createSlice from redux-starter-kit and immer integration.",
"version": "1.2.1",
"repository": "https://github.com/phryneas/use-local-slice",
"author": "phryneas",
"license": "MIT",
"private": false,
"sideEffects": false,
"dependencies": {
"immer": ">=1.0.0 <10.0.0"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@testing-library/react-hooks": "^5.0.2",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"microbundle": "0.11",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build": "rimraf dist/*; microbundle; rimraf dist/*mjs* dist/*umd* dist/*test*",
"dev": "microbundle watch",
"test": "jest"
},
"keywords": [
"hook",
"react",
"reducer",
"redux-starter-kit",
"useReducer",
"immer",
"redux"
]
}