forked from igorprado/react-notification-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.86 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
{
"name": "@clouden/react-notification-system",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"version": "0.4.2",
"description": "A React Notification System fully customized",
"main": "dist/NotificationSystem.js",
"scripts": {
"test": "karma start --single-run",
"test-watch": "karma start",
"prepare-build": "npm run lint && rimraf dist/",
"prebuild": "npm run prepare-build",
"build": "jsx -x jsx ./src ./dist & jsx ./src ./dist",
"build-webpack": "jsx -x jsx ./src ./dist & jsx ./src ./dist && webpack --stats --config webpack.config.umd.prod.js && webpack --stats --config webpack.config.umd.dev.js",
"lint": "eslint src --ext .jsx,.js",
"start": "NODE_ENV=development node devServer.js",
"build:example": "rimraf example/build/ && webpack --stats --config webpack.config.prod.js"
},
"repository": {
"type": "git",
"url": "https://github.com/igorprado/react-notification-system"
},
"keywords": [
"react",
"notification",
"notification system",
"component",
"react component",
"react-component"
],
"author": "Igor Prado",
"license": "MIT",
"bugs": {
"url": "https://github.com/igorprado/react-notification-system/issues"
},
"homepage": "https://github.com/igorprado/react-notification-system",
"dependencies": {
"object-assign": "^4.1.1",
"prop-types": "^15.8.1"
},
"peerDependencies": {
"react": "0.14.x || ^15.0.0 || ^16.0.0 || ^17.0.0",
"react-dom": "0.14.x || ^15.0.0 || ^16.0.0 || ^17.0.0"
},
"devDependencies": {
"autoprefixer-loader": "^3.1.0",
"babel-core": "^6.26.3",
"babel-eslint": "^6.1.2",
"babel-loader": "^8.2.3",
"babel-plugin-react-class-display-name": "^0.1.0",
"babel-plugin-react-transform": "^3.0.0",
"babel-preset-airbnb": "^5.0.0",
"chai": "^4.3.6",
"css-loader": "^6.5.1",
"eslint": "8.7.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"express": "^4.17.2",
"file-loader": "^6.2.0",
"isparta-loader": "^1.0.0",
"karma": "^6.3.12",
"karma-chai-plugins": "^0.9.0",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage": "^2.1.0",
"karma-coveralls": "^2.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"mocha": "^9.2.0",
"node-sass": "^7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-tools": "^0.13.2",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"rimraf": "^3.0.2",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"webpack": "^5.67.0",
"webpack-dev-middleware": "^5.3.0",
"webpack-hot-middleware": "^2.25.1"
}
}