-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@gigmade/react-hooks",
"version": "0.4.2",
"description": "Collection of useful hooks",
"type": "module",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
}
},
"files": [
"dist"
],
"lint-staged": {
"*.{js,jsx,ts,tsx,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"semi": false,
"singleQuote": true
},
"eslintConfig": {
"extends": "react-app",
"rules": {
"import/no-extraneous-dependencies": 2
}
},
"scripts": {
"clean": "bebbi-scripts clean",
"build": "bebbi-scripts build",
"watch": "bebbi-scripts build --watch",
"test": "bebbi-scripts test",
"format": "bebbi-scripts format",
"lint": "bebbi-scripts lint",
"validate": "bebbi-scripts validate",
"prepare": "husky install"
},
"devDependencies": {
"bebbi-scripts": "^0.5.8",
"husky": "^8.0.3",
"react": "^18.2.0",
"use-debounce": "8.0.4"
},
"peerDependencies": {
"react": "^18.2.0",
"use-debounce": "8.0.4"
},
"dependencies": {
"@gigmade/utils": "^0.1.2",
"react-layout-effect": "^1.0.5"
},
"author": "gigmade ltd (https://www.gigmade.com)",
"homepage": "",
"license": "MIT",
"repository": ""
}