-
Notifications
You must be signed in to change notification settings - Fork 249
/
package.json
86 lines (86 loc) · 2.74 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
{
"name": "react-notification-system",
"version": "0.4.0",
"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 && 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.0.1",
"prop-types": "^15.5.6"
},
"peerDependencies": {
"react": "0.14.x || ^15.0.0 || ^16.0.0",
"react-dom": "0.14.x || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"autoprefixer-loader": "^3.1.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-react-class-display-name": "^0.1.0",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-airbnb": "^2.0.0",
"chai": "^4.1.2",
"css-loader": "^0.24.0",
"eslint": "4.9.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"isparta-loader": "^1.0.0",
"karma": "^1.7.1",
"karma-chai-plugins": "^0.9.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"mocha": "^4.0.1",
"node-sass": "^4.13.0",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-tools": "^0.13.2",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.1.1",
"rimraf": "^2.4.3",
"sass-loader": "^3.0.0",
"style-loader": "^0.12.4",
"webpack": "^1.12.2",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.4.1"
}
}