-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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
{
"name": "MirrorOS",
"version": "0.1.0",
"main": "main.js",
"dependencies": {
"axios": "0.15.3",
"electron": "1.4.13",
"jquery": "3.1.1",
"jquery-ui": "1.12.1",
"jsdom": "9.8.3",
"lodash": "4.17.4",
"python-shell": "0.4.0",
"react": "15.4.1",
"react-dom": "15.4.1",
"react-redux": "5.0.2",
"react-router": "3.0.0",
"redux": "3.6.0",
"redux-promise": "0.5.3",
"redux-thunk": "2.2.0",
"socket.io": "1.7.2"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.21.0",
"babel-eslint": "^7.2.3",
"babel-loader": "6.2.10",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-2": "6.18.0",
"css-loader": "0.26.1",
"devtron": "1.4.0",
"electron-react-devtools": "0.4.0",
"eslint": "3.12.2",
"eslint-config-standard": "6.2.1",
"eslint-config-standard-jsx": "3.2.0",
"eslint-config-standard-react": "4.2.0",
"eslint-loader": "1.6.1",
"eslint-plugin-promise": "3.4.0",
"eslint-plugin-react": "6.8.0",
"eslint-plugin-standard": "2.0.1",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.9.0",
"jsdoc": "3.4.3",
"jshint": "2.9.4",
"json-loader": "0.5.4",
"redux-devtools-extension": "1.0.0",
"remote-redux-devtools": "0.5.7",
"standard": "8.6.0",
"standard-react": "^4.0.0",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.2"
},
"scripts": {
"babel": "babel --presets es2015 ./main.js -o build/main.bundle.js",
"electron": "electron .",
"build": "webpack",
"watch": "webpack --watch",
"start": "npm run build && npm run electron"
}
}