-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 KB
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
{
"name": "react-firetail",
"version": "0.1.0",
"license": "MIT",
"description": "Common tools for react apps - compatible with react18+, firebase9+, reactfire4+, tailwind3+",
"sideEffects": false,
"keywords": [],
"author": "WebberTakken <webber@takken.io>",
"repository": {
"type": "git",
"url": "https://github.com/webbertakken/react-firetail.git"
},
"bugs": {
"url": "https://github.com/webbertakken/react-firetail/issues"
},
"homepage": "https://github.com/webbertakken/react-firetail",
"peerDependencies": {
"@loadable/component": "^5.15.2",
"firebase": "^9.6.1",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"react": "^18.0.0-rc.0",
"react-dom": "^18.0.0-rc.0",
"react-hot-toast": "^2.1.1",
"reactfire": "^4.2.1",
"tailwindcss": "^3.0.8",
"web-vitals": "^2.1.2"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^39.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.4",
"prettier": "^2.5.1"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,yaml,yml}": [
"prettier --write"
]
},
"packageManager": "yarn@3.1.1"
}