forked from getflywheel/local-addon-ports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.56 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
{
"name": "local-addon-proxypass",
"productName": "Proxy Images",
"version": "1.0.0",
"author": "Colin Duwe",
"keywords": [
"local-addon"
],
"bgColor": "#010934",
"icon": "icon.svg",
"slug": "proxypass",
"description": "Proxy images from your production sites to your Local sites!",
"renderer": "lib/renderer.js",
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "https://github.com/colinduwe/local-addon-proxypass"
},
"bugs": {
"url": "https://github.com/colinduwe/local-addon-proxypass/issues"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"watch": "yarn run build --watch"
},
"devDependencies": {
"@getflywheel/eslint-config-local": "1.0.4",
"@getflywheel/local": "^5.1.0-alpha.3",
"@types/classnames": "^2.2.9",
"@types/dateformat": "^3.0.1",
"@types/node": "^12.7.12",
"eslint": "^5.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-react": "^7.11.1",
"typescript": "^3.9.5"
},
"peerDependencies": {
"react": ">= 16.4.0",
"react-dom": ">= 16.4.0",
"react-router-dom": "^4.3.1"
},
"dependencies": {
"@getflywheel/local-components": "^11.0.0",
"classnames": "^2.2.6",
"dateformat": "^3.0.3",
"expand-tilde": "^2.0.2",
"handlebars": "^4.7.6",
"nginx-conf": "^1.5.0",
"prop-types": "^15.6.2",
"react": "^16.10.2",
"react-debounce-input": "^3.2.2",
"react-dom": "^16.10.2",
"react-router-dom": "^5.1.2",
"validator": "^13.1.1"
},
"bundledDependencies": [
"classnames",
"dateformat",
"@getflywheel/local-components",
"prop-types"
],
"engines": {
"local-by-flywheel": "^5.0.0"
}
}