-
Notifications
You must be signed in to change notification settings - Fork 149
/
Copy pathpackage.json
127 lines (127 loc) · 3.69 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "react-redux-toastr",
"version": "8.0.0",
"description": "react-redux-toastr is a React toastr message implemented with Redux",
"main": "lib/index.js",
"jsnext:main": "./src/index.js",
"scripts": {
"start": "cross-env NODE_ENV=development NODE_PORT=4001 better-npm-run dev-server",
"build": "babel src/ --out-dir lib && npm run sass && npm run postcss",
"sass": "sass src/styles/index.scss lib/css/react-redux-toastr.min.css --style compressed",
"postcss": "postcss --u autoprefixer -o ./lib/css/react-redux-toastr.min.css ./lib/css/react-redux-toastr.min.css",
"clean": "rimraf dist lib",
"lint": "eslint --fix .",
"build_app": "concurrently 'npm run clean' 'npm run lint' 'npm run build' 'npm run sass' 'npm run clean'",
"buildc": "better-npm-run build_client"
},
"eslintConfig": {
"root": true
},
"betterScripts": {
"dev-server": {
"command": "webpack-dev-server --hot --inline --mode=development --config webpack/development.js",
"env": {
"NODE_ENV": "development",
"NODE_PORT": 4001
}
},
"build_client": {
"command": "webpack -p --color --progress --mode=production --config webpack/production.js",
"env": {
"NODE_ENV": "production"
}
}
},
"author": "Diego Oliveira",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/diegoddox/react-redux-toastr.git"
},
"bugs": {
"url": "https://github.com/diegoddox/react-redux-toastr/issues"
},
"files": [
"src/",
"lib/",
"CHANGELOG.md",
"README.md"
],
"keywords": [
"React.js",
"React",
"Redux",
"react",
"redux toastr",
"react-redux-toastr",
"react-component",
"toastr",
"alert",
"toast",
"message",
"popup",
"react toastr",
"react redux toastr",
"react toastr redux",
"react confirm",
"react alert",
"avatar",
"toastr profile"
],
"devDependencies": {
"@babel/cli": "^7.22.15",
"@babel/core": "^7.22.20",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"autoprefixer": "^9.8.8",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.3.0",
"better-npm-run": "^0.1.1",
"clean-css": "^4.2.4",
"clean-css-loader": "^1.1.0",
"concurrently": "^4.1.2",
"cross-env": "^7.0.3",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-react": "^7.33.2",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"lorem-ipsum": "^1.0.6",
"mini-css-extract-plugin": "^0.5.0",
"postcss-cli": "^6.1.3",
"postcss-extend": "^1.0.5",
"postcss-import": "^12.0.1",
"postcss-mixins": "^6.2.3",
"postcss-nested": "^4.2.3",
"postcss-simple-vars": "^5.0.2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.0.4",
"react-refresh": "^0.14.0",
"redux": "^5.0.1",
"rimraf": "^2.7.1",
"sass": "^1.67.0",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.47.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3"
},
"peerDependencies": {
"prop-types": "^15.5.7",
"react": "^0.14 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0",
"react-redux": "^4.0.1 || ^5.0.1 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"redux": "^3.0.5 || ^4.0.0 || ^5.0.0"
},
"dependencies": {
"classnames": "^2.3.2",
"eventemitter3": "^3.1.2"
},
"homepage": "https://github.com/diegoddox/react-redux-toastr#readme"
}