forked from malerba118/react-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.38 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
93
94
95
96
97
{
"name": "react-delta-hooks",
"version": "1.1.5",
"description": "Toolbelt for more flexible effects in react",
"author": "akshayvadher",
"license": "MIT",
"repository": "akshayvadher/react-delta",
"keywords": [
"react",
"hooks",
"lifecycle",
"componentDidUpdate",
"useEffect",
"usePrevious",
"prevProps",
"prevState"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=20",
"npm": ">=10"
},
"scripts": {
"test": "vitest",
"lint": "eslint",
"build": "rollup -c",
"start": "rollup -c -w",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"lodash-es": "^4.17.21"
},
"peerDependencies": {
"react": "^16.8.5 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.5 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@cfaester/enzyme-adapter-react-18": "^0.8.0",
"@chromatic-com/storybook": "^1.6.1",
"@eslint/compat": "^1.1.0",
"@eslint/js": "^9.6.0",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-essentials": "^8.1.11",
"@storybook/addon-interactions": "^8.1.11",
"@storybook/addon-links": "^8.1.11",
"@storybook/addon-onboarding": "^8.1.11",
"@storybook/blocks": "^8.1.11",
"@storybook/react": "^8.1.11",
"@storybook/react-vite": "^8.1.11",
"@storybook/test": "^8.1.11",
"@types/enzyme": "^3.10.18",
"@types/lodash-es": "^4.17.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"enzyme": "^3.11.0",
"eslint": "^9.6.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-storybook": "^0.8.0",
"globals": "^15.8.0",
"happy-dom": "^14.12.3",
"prettier": "^3.3.2",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.18.0",
"storybook": "^8.1.11",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"typescript-eslint": "^7.15.0",
"vite": "^5.3.3",
"vitest": "^1.6.0"
},
"overrides": {
"eslint-plugin-react": {
"eslint": "$eslint"
},
"@eslint-community/eslint-utils": {
"eslint": "$eslint"
},
"typescript-eslint": {
"eslint": "$eslint"
}
},
"files": [
"dist",
"declaration"
],
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}