-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
{
"name": "admin-ui",
"version": "1.0.0",
"description": "Redux & React based Admin center for notifications",
"scripts": {
"start": "cd demo && node server.js",
"build:lib": "BABEL_ENV=production babel src --out-dir lib",
"build:demo": "rimraf ./dist_demo && cd demo && webpack -p && mv dist_demo ../"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/citrix-web/admin-ui"
},
"author": "Citrix",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/citrix-web/admin-ui/issues"
},
"homepage": "",
"dependencies": {
"classnames": "^2.2.0",
"isomorphic-fetch": "2.2.1",
"superagent": "^1.8.3"
},
"peerDependencies": {
"redux": "^2.0.0 || ^3.0.0",
"react-redux": "^2.0.0 || ^3.1.0 || ^4.0.0",
"react": "^0.13.3 || ^0.14.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"babel-plugin-react-transform": "^1.1.1",
"babel-runtime": "^5.8.25",
"css-loader": "^0.20.2",
"eslint-plugin-react": "^3.6.3",
"express": "^4.13.3",
"file-loader": "^0.8.4",
"history": "^1.12.5",
"node-sass": "^3.3.3",
"react-dom": "^0.14.0",
"react-intl": "^2.0.0-pr-3",
"react-redux": "^4.0.0",
"react-transform-hmr": "^1.0.1",
"redux": "^3.0.2",
"redux-devtools": "^2.1.5",
"redux-router": "^1.0.0-beta3",
"redux-thunk": "^1.0.0",
"rimraf": "^2.4.3",
"sass-loader": "^3.0.0",
"serve-static": "^1.10.0",
"style-loader": "^0.12.4",
"webpack": "^1.12.2",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.4.1"
}
}