-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
74 lines (74 loc) · 1.82 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
{
"homepage": "https://damikun.github.io/React-Toast",
"name": "react-toast-notify",
"version": "0.0.2",
"license": "MIT",
"author": "Dalibor Kundrat",
"private": false,
"keywords": [
"react",
"react-toast",
"react-notify",
"react-toast-component",
"react-push"
],
"babel": {
"presets": [
"@babel/preset-react"
]
},
"peerDependencies": {
"react": "^17.0.1"
},
"dependencies": {
"@babel/cli": "^7.12.8",
"@babel/preset-react": "^7.12.7",
"@types/node": "^12.19.8",
"@types/react": "^16.14.2",
"@types/react-dom": "^16.9.10",
"autoprefixer": "^10.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "4.0.1",
"typescript": "^4.1.2"
},
"scripts": {
"start": "yarn run build:css && react-scripts start",
"build": " react-scripts build",
"build:css": "postcss src/CSS/Tailwind.css -o src/CSS/App.css ",
"predeploy": "react-scripts build",
"deploy": "gh-pages -d build",
"publish:npm": " mkdir dist && babel src/Components/Toast -d dist --copy-files"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.13.0",
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@tailwindcss/typography": "^0.2.0",
"clsx": "^1.1.1",
"gh-pages": "^3.1.0",
"postcss": "^8.2.1",
"postcss-cli": "^8.3.1",
"tailwindcss": "^2.0.2",
"tailwindcss-truncate-multiline": "^1.0.3"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}