-
Notifications
You must be signed in to change notification settings - Fork 175
/
package.json
76 lines (76 loc) · 2.31 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
{
"name": "react-toast-notifications",
"version": "2.5.1",
"description": "A configurable, composable, toast notification system for react.",
"main": "dist/index.js",
"typings": "./index.d.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/jossmac/react-toast-notifications.git"
},
"bugs": {
"url": "https://github.com/jossmac/react-toast-notifications/issues"
},
"keywords": [
"react",
"toast",
"toasts",
"notification",
"notifications"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development",
"prettier_lint": "prettier --list-different \"**/*.js\"",
"eslint": "eslint .",
"lint": "yarn prettier_lint && yarn eslint",
"typecheck": "flow check",
"build": "cross-env NODE_ENV=production babel src -d dist --copy-files",
"prepublishOnly": "npm run build",
"build:examples": "webpack --mode production",
"deploy:examples": "gh-pages -d examples/dist",
"publish:examples": "npm run build:examples && npm run deploy:examples"
},
"prettier": {
"proseWrap": "preserve",
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"@emotion/core": "^10.0.14",
"react-transition-group": "^4.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^7.0.3",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"flow-bin": "^0.102.0",
"gh-pages": "^1.1.0",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.12.1",
"raw-loader": "^0.5.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-radios": "^1.1.0",
"react-syntax-highlighter": "^7.0.4",
"style-loader": "^0.21.0",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.3"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
}
}