-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
102 lines (102 loc) · 3.29 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
{
"name": "react-simple-toasts",
"version": "6.0.1",
"description": "Instant, lightweight toast notifications for React. No providers or containers needed.",
"author": "almond-bongbong",
"homepage": "https://github.com/almond-bongbong/react-simple-toasts",
"license": "MIT",
"repository": "almond-bongbong/react-simple-toasts",
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.js"
},
"./style.css": "./dist/style.css",
"./style.css.map": "./dist/style.css.map",
"./dist/style.css": "./dist/style.css",
"./dist/style.css.map": "./dist/style.css.map"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build:theme": "postcss src/theme/*.css -d dist/theme --env theme",
"build:sass": "sass src/style.scss dist/style.css",
"postbuild:sass": "postcss dist/style.css --use autoprefixer -m -o dist/style.css",
"prebuild": "yarn build:theme && yarn build:sass",
"build": "rollup -c",
"start:theme": "postcss src/theme/*.css -d dist/theme --env theme --watch",
"start:sass": "sass src/style.scss dist/style.css --watch",
"start": "concurrently \"rollup -c -w\" \"yarn start:theme\" \"yarn start:sass\"",
"predeploy": "cd example && yarn install && yarn build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.21.5",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-eslint": "^9.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^23.1.5",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"autoprefixer": "^10.4.14",
"babel-jest": "^29.5.0",
"concurrently": "^8.2.0",
"cross-env": "^5.1.4",
"cssnano": "^6.0.1",
"eslint": "^8.42.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^5.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"postcss": "^8.4.23",
"postcss-cli": "^10.1.0",
"prettier": "^2.8.8",
"react": "19.0.0-rc-02c0e824-20241028",
"react-dom": "19.0.0-rc-02c0e824-20241028",
"rollup": "^3.10.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.1",
"sass": "^1.56.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"files": [
"dist"
],
"engines": {
"node": ">=16.17.0 <=20.x"
},
"sideEffects": [
"*.css"
],
"keywords": [
"react",
"toast",
"notification",
"react-toast",
"react-toast-notification",
"toast-notification",
"toastify",
"react-toastify"
],
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}