-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 913 Bytes
/
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
{
"name": "react-use-smart-state",
"version": "1.0.4",
"description": "React hook for less unnecessary state updates",
"keywords": [
"react",
"hook",
"state",
"update"
],
"author": "Piotr Pliszczyński <fookoo@gmail.com>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"url": "https://github.com/fookoo/react-use-smart-state"
},
"scripts": {
"prepublish": "tsc",
"test": "react-scripts test",
"test:coverage": "npm run test -- --coverage --watchAll=false"
},
"dependencies": {
"react": "^17.0.2",
"fast-deep-equal": "^3.1.3"
},
"devDependencies": {
"react-dom": "^17.0.2",
"react-scripts": "^4.0.3",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "12.6.0",
"@types/react": "^17.0.4",
"prettier": "^2.2.1"
}
}