-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "use-optimistic-reducer",
"version": "1.3.3",
"description": "React reducer hook for handling optimistic UI updates and race-conditions.",
"main": "build/index.js",
"scripts": {
"test": "jest --config jestconfig.json --verbose false",
"watch": "jest --config jestconfig.json --watch --verbose false",
"build": "tsc",
"release": "standard-version"
},
"repository": "https://github.com/aboudicheng/use-optimistic-reducer",
"author": "Ping Cheng",
"license": "MIT",
"dependencies": {
"immer": "^7.0.7",
"use-immer": "^0.4.1"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^25.1.0",
"@types/react": "^16.9.19",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^4.1.2",
"jest": "^25.1.0",
"prettier": "^2.1.2",
"react": "^16.12.0",
"react-test-renderer": "^16.8.0",
"standard-version": "^9.0.0",
"ts-jest": "^26.2.0",
"typescript": "^3.7.5"
},
"keywords": [
"react",
"react-hooks",
"optimistic-ui",
"redux"
],
"files": [
"build/**/*"
]
}