forked from sepehr09/react-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 960 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-utils",
"version": "1.0.0",
"description": "A collection of useful React Hooks, utilities and Components.",
"homepage": "https://github.com/sepehr09/react-utils",
"repository": {
"type": "git",
"url": "git@github.com/sepehr09/react-utils.git"
},
"author": "Sepehr Karimi <karimi.sepehr2@gmail.com>",
"license": "MIT",
"private": false,
"keywords": [
"react-utils",
"utils",
"utility",
"hooks",
"react hooks",
"react hook"
],
"dependencies": {},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@types/node": "^18.15.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"rollup": "^3.19.1",
"rollup-plugin-typescript2": "^0.34.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"scripts": {
"bundle-all": "for pkg in packages/hooks/*; do rollup -c $pkg/rollup.config.js; done"
}
}