forked from jossmac/react-toast-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.12 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
{
"name": "react-toast",
"version": "2.5.1",
"description": "A configurable, composable, toast notification system for react.",
"main": "src/index.ts",
"license": "MIT",
"author": "Joss Mackison (https://github.com/jossmac)",
"homepage": "https://jossmac.github.io/react-toast-notifications",
"repository": {
"type": "git",
"url": "https://github.com/taskworld/react-toast.git"
},
"bugs": {
"url": "https://github.com/taskworld/react-toast/issues"
},
"keywords": [
"react",
"toast",
"toasts",
"notification",
"notifications"
],
"scripts": {},
"devDependencies": {
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/react-transition-group": "^4.4.10",
"lefthook": "^1.6.1",
"prettier": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.3"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"dependencies": {
"@emotion/css": "^11.11.2",
"react-transition-group": "^4.4.5"
},
"prettier": {
"proseWrap": "preserve",
"singleQuote": true,
"trailingComma": "es5"
}
}