-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
120 lines (120 loc) · 3.65 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "ddev-ui",
"description": "A GUI to complement the DDEV CLI",
"version": "v0.6.0",
"main": "src/main/index.js",
"homepage": "https://github.com/drud/ddev-ui",
"author": {
"name": "DRUD Tech",
"email": "support@drud.com"
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"scripts": {
"dev": "yarn compile dev",
"compile": "electron-webpack",
"clean": "rm -rf dist node_modules",
"clean:node": "rm -rf node_modules",
"clean:dist": "rm -rf dist",
"dist": "yarn compile && build",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"lint": "eslint --cache --color --ext .jsx,.js src",
"lint:tests": "eslint --cache --color --ext .jsx,.js test",
"build": "yarn dist",
"build:all": "yarn dist -mwl",
"build:linux": "yarn dist --linux --x64",
"build:windows": "yarn dist --win",
"build:darwin": "yarn dist --mac",
"release": "yarn dist -p always",
"release:all": "yarn build:all -p always",
"release:linux": "yarn build:linux -p always",
"release:windows": "yarn build:windows -p always",
"release:darwin": "yarn build:darwin -p always",
"test": "echo \"Tests are in Development\"",
"test:all": "echo \"This would run all tests\"",
"test:cli": "echo \"This would run functional/unit cli tests\"",
"test:interface": "echo \"This would run UI interface tests\""
},
"electronWebpack": {
"renderer": {
"webpackConfig": "webpack.renderer.config.js"
}
},
"dependencies": {
"babel-loader": "8.0.x",
"bootstrap": "4.3.x",
"browserslist": "^4.1",
"classnames": "^2.2.6",
"compare-versions": "3.x",
"css-element-queries": "^1.1.1",
"electron-default-menu": "1.x",
"electron-devtools-installer": "2.x",
"electron-is-dev": "1.x",
"electron-log": "2.2.x",
"electron-updater": "4.0.x",
"fix-path": "2.1.x",
"font-awesome": "4.7.x",
"jquery": "3.4.x",
"js-yaml-loader": "^1.0.1",
"lodash": "4.17.x",
"node-fetch": "2.x",
"popper.js": "1.14.x",
"prop-types": "15.x",
"react": "16.x",
"react-desktop": "0.3.x",
"react-dom": "16.x",
"react-router": "4.x",
"react-router-dom": "4.x",
"react-spinners": "0.4.x",
"react-split-pane": "^0.1.84",
"react-toastify": "4.x",
"reactstrap": "^6.5.0",
"request": "2.x",
"sudo-prompt": "8.x",
"tar": "4.x",
"xml2js": "0.4.x"
},
"devDependencies": {
"@babel/core": "7.x",
"@babel/node": "7.x",
"@babel/plugin-proposal-class-properties": "7.x",
"@babel/plugin-proposal-json-strings": "7.x",
"@babel/plugin-syntax-dynamic-import": "7.x",
"@babel/plugin-syntax-import-meta": "7.x",
"@babel/plugin-transform-react-jsx-source": "7.x",
"@babel/preset-env": "7.x",
"@babel/preset-react": "7.x",
"@babel/register": "7.x",
"babel-eslint": "v10.0.x",
"babel-plugin-root-import": "6.x",
"cypress": "3.4.1",
"electron": "3.0.x",
"electron-builder": "20.x",
"electron-webpack": "2.7.x",
"eslint": "5.9.x",
"eslint-config-airbnb": "17.x",
"eslint-config-prettier": "3.x",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-babel": "5.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-prettier": "2.x",
"eslint-plugin-react": "7.x",
"file-loader": "1.x",
"ignore-styles": "5.x",
"node-sass": "4.x",
"prettier": "1.x",
"react-error-boundary": "^1.2.3",
"sass-loader": "7.x",
"webpack": "4.x"
},
"resolutions": {
"browserslist": "^4.1",
"js-yaml": "3.13.1"
}
}