This repository has been archived by the owner on Apr 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
83 lines (83 loc) · 2.81 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
{
"name": "deisdash",
"version": "0.1.0",
"description": "Deis Dash is a web based UI for the Deis PaaS",
"scripts": {
"start": "node server.js",
"start:prod": "NODE_ENV=production node server.js",
"start:electron": "electron ./electron/main.js",
"build": "NODE_ENV=production webpack -p --config webpack.build.config.js",
"build:electron": "ELECTRON=1 NODE_ENV=production webpack -p --config webpack.electron.config.js",
"postinstall": "npm run build",
"package:clean": "rm -rf ./electron/installers/* && rm -rf ./electron/packages",
"package:osx": "electron-packager ./electron \"Deis Dash\" --platform=darwin --arch=x64 --version=0.36.8 --icon=./electron/icons.icns --out=./electron/packages/",
"package:osx:dmg": "electron-installer-dmg \"./electron/packages/Deis Dash-darwin-x64/Deis Dash.app\" \"Deis Dash\" --icon=./electron/icons.icns --out=./electron/installers/"
},
"engines": {
"node": "5.5.0",
"npm": "3.3.12"
},
"repository": {
"type": "git",
"url": "https://github.com/olalonde/deisdash"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/olalonde/deisdash/issues"
},
"homepage": "http://deisdash.com",
"dependencies": {
"babel-polyfill": "^6.3.14",
"humps": "^0.6.0",
"isomorphic-fetch": "^2.1.1",
"lodash": "^4.2.1",
"moment": "^2.11.2",
"morgan": "^1.6.1",
"normalizr": "^2.0.0",
"rc-slider": "^3.3.2",
"react": "^0.14.7",
"react-bootstrap": "^0.28.2",
"react-dom": "^0.14.7",
"react-ga": "^1.2.0",
"react-json-tree": "^0.5.1",
"react-redux": "^4.2.1",
"react-router": "2.0.0-rc5",
"react-router-bootstrap": "^0.20.1",
"react-router-redux": "^2.1.0",
"redux": "^3.2.1",
"redux-logger": "^2.4.0",
"redux-thunk": "^1.0.3"
},
"devDependencies": {
"babel-core": "^6.3.15",
"babel-eslint": "^4.1.8",
"babel-loader": "^6.2.0",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.1",
"bootstrap-loader": "^1.0.7",
"bootstrap-sass": "^3.3.6",
"classnames": "^2.2.3",
"concurrently": "^0.1.1",
"css-loader": "^0.23.1",
"electron-installer-dmg": "^0.1.0",
"electron-packager": "^5.2.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"eslint-plugin-react": "^3.16.1",
"express": "^4.13.3",
"file-loader": "^0.8.5",
"node-sass": "^3.4.2",
"redux-devtools": "^3.1.0",
"redux-devtools-dock-monitor": "^1.0.1",
"redux-devtools-log-monitor": "^1.0.3",
"resolve-url-loader": "^1.4.3",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.9.11",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.2.0"
}
}