-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
70 lines (70 loc) · 1.98 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
{
"name": "react-bs-notifier",
"version": "7.0.0",
"description": "A react component to show growl-like notifications using bootstrap alerts",
"keywords": [
"react-component",
"react",
"growl",
"toaster",
"notifier",
"notifications",
"bootstrap",
"alerts"
],
"main": "lib/index.js",
"module": "es/index.js",
"sideEffects": false,
"author": "Chad Lee <[email protected]>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --progress --inline --hot --content-base docs/ --port 1341",
"compile-cjs": "rimraf lib && cross-env BABEL_ENV=cjs babel src -d lib",
"compile-es": "rimraf es && babel src -d es",
"compile": "npm run compile-cjs && npm run compile-es",
"prepublishOnly": "npm run lint && npm run compile",
"build": "webpack --progress --bail",
"lint": "eslint --ignore-pattern lib --ignore-pattern es ."
},
"repository": {
"type": "git",
"url": "https://github.com/chadly/react-bs-notifier"
},
"bugs": {
"url": "https://github.com/chadly/react-bs-notifier/issues"
},
"dependencies": {
"prop-types": "^15.7.2",
"react-jss": "^10.4.0",
"react-transition-group": "^4.4.1",
"toetag": "^3.3.7"
},
"peerDependencies": {
"react": ">=18"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@runly/eslint-config": "^2.0.1",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"css-loader": "^4.2.1",
"eslint": "^7.7.0",
"json-loader": "~0.5.7",
"prettier": "^2.0.5",
"prism-react-renderer": "^1.1.1",
"raw-loader": "^4.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-live": "^3.1.1",
"react-remarkable": "^1.1.3",
"rimraf": "^3.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}