-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.32 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.32 KB
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
{
"name": "proxyz",
"version": "1.0.0",
"main": "./main.js",
"author": "stormning",
"scripts": {
"postinstall": "cross-env NODE_ENV=product webpack -p --config webpack.config.babel.js",
"web": "cross-env NODE_ENV=development webpack-dev-server --config webpack.config.babel.js",
"desktop": "cross-env DESKTOP=1 npm run web",
"start-desktop": "cross-env NODE_ENV=development electron . --enable-logging",
"pack": "npm run postinstall && build --dir --config builder.json",
"dist": "npm run postinstall && build --config builder.json",
"clean": "rm -rf ./dist && rm -rf ./build"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.2",
"electron": "^1.6.7",
"electron-builder": "^17.8.0",
"electron-devtools-installer": "^2.2.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.28.0",
"json-loader": "^0.5.4",
"keymirror": "^0.1.1",
"node-sass": "^4.5.3",
"prop-types": "^15.5.10",
"sass-loader": "^6.0.5",
"style-loader": "^0.18.0",
"url-loader": "^0.5.8",
"webpack": "^2.6.0",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"axios": "^0.16.2",
"babel-runtime": "^6.23.0",
"bundle-loader": "^0.5.5",
"chart.js": "^1.1.1",
"cross-env": "^5.0.1",
"getmac": "^1.2.1",
"history": "^4.6.1",
"immutable": "^3.8.1",
"material-ui": "^1.0.0-alpha.16",
"material-ui-icons": "^1.0.0-alpha.3",
"react": "^15.5.4",
"react-chartjs": "^0.8.0",
"react-dom": "^15.5.4",
"react-hot-loader": "^3.0.0-beta.7",
"react-redux": "^5.0.5",
"react-router-config": "^1.0.0-beta.3",
"react-router-dom": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.6",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-actions": "^2.0.3",
"redux-immutable": "^4.0.0",
"redux-promise": "^0.5.3"
}
}