forked from indexiatech/re-notif
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 2 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
{
"name": "redux-notifications",
"version": "4.0.1",
"description": "Redux & React based Notifications center",
"scripts": {
"start": "cd demo && webpack-dev-server --config webpack.config.js --progress --colors --port 9000",
"clean": "rimraf lib",
"build": "npm run clean && BABEL_ENV=production babel src --out-dir lib && cp src/styles.css lib/styles.css",
"lint": "eslint src",
"prepublish": "npm run lint && npm run build"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/indexiatech/re-notif.git"
},
"author": "Indexia Technologies, ltd.",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/indexiatech/re-notif/issues"
},
"homepage": "http://indexiatech.github.io/re-notif",
"dependencies": {
"object-assign": "^4.1.1",
"prop-types": "^15.5.10",
"react-transition-group": "^1.1.3"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.13.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.25.0",
"eslint": "^2.13.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-loader": "^1.1.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^1.6.0",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.0",
"express": "^4.14.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-transform-hmr": "^1.0.1",
"react-transition-group": "^1.1.3",
"redux": "^3.6.0",
"react-redux": "^4.0.0",
"redux-devtools": "^3.3.1",
"redux-thunk": "^2.1.0",
"rimraf": "^2.5.2",
"serve-static": "^1.10.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.16.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^15.4.0-0 || ^16.0.0-0",
"react-dom": "^0.14.0 || ^15.0.0-0 || ^15.4.0-0 || ^16.0.0-0",
"react-redux": ">=4.0.0"
}
}