-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
107 lines (107 loc) · 3.71 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
{
"name": "react-notifications-component",
"version": "4.0.1",
"homepage": "http://teodosii.github.io/react-notifications-component",
"description": "React component for creating notifications on the fly",
"main": "dist/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"compile": "npm run build:library:prod",
"build": "npm run build:library:prod",
"build:library:dev": "webpack --config webpack.dev.js && tsc-alias",
"build:library:prod": "webpack --config webpack.prod.js && tsc-alias",
"build:samples:dev": "webpack --config webpack.samples.dev.js",
"build:samples:prod": "webpack --config webpack.samples.prod.js",
"watch:library": "webpack -w --config webpack.dev.js",
"start": "webpack-dev-server --config ./webpack.samples.dev.js",
"predeploy": "npm run build:samples:prod",
"deploy": "gh-pages -d dist",
"publish:npm": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/teodosii/react-notifications-component"
},
"bugs": {
"url": "https://github.com/teodosii/react-notifications-component/issues"
},
"keywords": [
"react",
"react-component",
"react-notifications",
"notifications-component",
"toast-notifications",
"toast-component",
"notifications"
],
"author": "Rares Mardare",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.12",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/runtime": "^7.16.7",
"@fortawesome/fontawesome-free": "^5.15.4",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"animate.css": "^4.1.1",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.4.6",
"babel-loader": "^8.2.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"bootstrap": "^5.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.1",
"css-loader": "^6.5.1",
"css-select-base-adapter": "^0.1.1",
"eslint": "^8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.28.0",
"eslint-webpack-plugin": "^3.1.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^6.2.0",
"font-awesome": "^4.7.0",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.5.3",
"node-sass": "^7.0.1",
"npm-dts-webpack-plugin": "^1.3.10",
"object-assign": "^4.1.1",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"prettier": "^2.5.1",
"react": "^18.0.1",
"react-dom": "^18.0.1",
"react-github-button": "^0.1.11",
"react-github-corner": "^2.5.0",
"react-test-renderer": "^17.0.2",
"regenerator-runtime": "^0.13.9",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.0",
"ts-loader": "^9.2.6",
"tsc-alias": "^1.5.0",
"tsconfig-paths": "^3.12.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.5.5",
"typescript-transform-paths": "^3.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3"
},
"peerDependencies": {
"react": "^18.0.1"
}
}