-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.07 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
{
"name": "@envato/react-breakpoints",
"version": "1.2.0",
"description": "Respond to changes in a DOM element's size. With React Breakpoints, element queries are no longer \"web design's unicorn\" 🦄",
"main": "dist/index.js",
"scripts": {
"compile": "tsc --noEmit",
"build": "tsc -b",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/envato/react-breakpoints.git"
},
"keywords": [
"resize-observer",
"media-queries",
"element-queries",
"container-queries",
"breakpoints",
"react-hooks",
"hooks",
"react",
"performance",
"resize-observer",
"breakpoints",
"media-queries"
],
"author": "marc.dingena@envato.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/envato/react-breakpoints/issues"
},
"homepage": "https://github.com/envato/react-breakpoints#readme",
"peerDependencies": {
"react": "16.8 - 18",
"react-dom": "16.8 - 18"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.17.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"typescript": "^4.6.0"
},
"dependencies": {
"@envato/react-resize-observer-hook": "^1.3.0"
},
"eslintConfig": {
"extends": "react-app"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
},
"prettier": {
"arrowParens": "avoid",
"jsxSingleQuote": true,
"printWidth": 120,
"quoteProps": "preserve",
"semi": true,
"singleQuote": true,
"trailingComma": "none"
}
}