-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 2.01 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
{
"name": "lxd-rwebui",
"version": "0.1.0",
"description": "LXD UI in React/Material",
"private": true,
"author": {
"name": "Piotr Synowiec",
"email": "[email protected]",
"url": ""
},
"bugs": "https://github.com/mysiar/lxd-rwebui/issues",
"repository": {
"type": "git",
"url": "https://github.com/mysiar/lxd-rwebui.git"
},
"main": "public/electron.js",
"homepage": "./",
"build": {
"appId": "com.mysiar.lxd-rwebui",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
},
"win": {
"icon": "icons/icon.ico"
},
"linux": {
"icon": "icons/png"
},
"mac": {
"icon": "icons/icon.icns"
}
},
"dependencies": {
"electron-is-dev": "0.1.2",
"lodash": "^4.17.4",
"material-ui": "^0.18.3",
"node-lxd": "https://github.com/mysiar/node-lxd",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.4",
"react-router-dom": "^4.1.1",
"react-router-redux": "^4.0.8",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"redux-form": "^6.6.3",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"concurrently": "^3.4.0",
"electron": "1.7.3",
"electron-builder": "19.7.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-react": "^7.1.0",
"react-scripts": "1.0.10",
"snyk": "^1.36.2",
"wait-on": "^2.0.2",
"why-did-you-update": "0.0.8"
},
"scripts": {
"start": "react-scripts start",
"build": "CI='' react-scripts build",
"lint": "eslint src",
"test": "snyk test && react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron-dev": "concurrently \"BROWSER=none yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"electron-pack": "build --em.main=build/electron.js",
"preelectron-pack": "yarn build"
}
}