forked from evandromacedo/react-simple-snackbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.61 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
{
"name": "@swat-sccs/react-simple-snackbar",
"version": "2.1.0",
"description": "A really simple React snackbar component",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.es.js",
"type": "module",
"jsnext:main": "dist/index.es.js",
"files": [
"dist"
],
"scripts": {
"start": "rollup -c -w",
"build": "NODE_ENV=production rollup -c",
"build:dev": "rollup -c",
"predeploy": "npm run build && cd site && npm install && npm run build",
"deploy": "gh-pages -d site/dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swat-sccs/react-simple-snackbar.git"
},
"keywords": [
"react-simple-snackbar",
"react",
"simple",
"snackbar",
"component",
"hooks",
"hoc",
"high-order-component",
"alert",
"notification",
"message",
"toast",
"javascript"
],
"author": "Evandro Macedo <[email protected]> (https://github.com/evandromacedo)",
"license": "MIT",
"bugs": {
"url": "https://github.com/evandromacedo/react-simple-snackbar/issues"
},
"homepage": "https://evandromacedo.github.io/react-simple-snackbar",
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-url": "^8.0.2",
"autoprefixer": "^10.4.19",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.1",
"eslint": "^8.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-standard": "^4.1.0",
"gh-pages": "^6.1.1",
"identity-obj-proxy": "^3.0.0",
"minimist": ">=1.2.8",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.16.4",
"rollup-plugin-postcss": "^4.0.2",
"serialize-javascript": "^6.0.2"
},
"peerDependencies": {
"react": "18.x",
"react-dom": "18.x"
},
"dependencies": {
"@babel/runtime": "^7.24.4",
"react-transition-group": "^4.4.5"
}
}