-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.8 KB
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
{
"name": "react-toastification",
"version": "1.1.1",
"description": "Easy and customizable toast-notifications with React.",
"homepage": "https://github.com/timlangner/react-toastification#readme",
"bugs": {
"url": "https://github.com/timlangner/react-toastification/issues"
},
"main": "./build/Toast.js",
"module": "./build/Toast.esm.js",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/timlangner/react-toastification.git"
},
"license": "MIT",
"author": "Tim Langner <tim.langner0@gmail.com>",
"scripts": {
"start": "parcel public/index.html",
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@babel/runtime": "^7.12.1",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.11",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"devDependencies": {
"@babel/core": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"cross-env": "^7.0.2",
"cssnano": "^4.1.10",
"node-sass": "^4.14.1",
"parcel": "^1.12.4",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-scripts": "^3.4.3",
"rollup": "^2.32.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-postcss": "^3.1.8"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}