-
Notifications
You must be signed in to change notification settings - Fork 124
/
package.json
125 lines (125 loc) · 3.58 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
121
122
123
124
125
{
"name": "james",
"version": "2.1.2",
"description": "HTTP/HTTPS proxy built in Electron and React",
"author": "Julian Hollmann <hollmann@uxebu.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/james-proxy/james.git"
},
"main": "main/index.js",
"scripts": {
"postinstall": "npm run build:dll",
"prebuild": "npm run clean",
"build": "electron-webpack",
"build:dll": "electron-webpack dll",
"clean": "rimraf dist/ binaries/",
"start": "electron-webpack dev",
"dev": "npm start",
"development": "npm start",
"lint": "eslint ./src ./test",
"test": "mocha-webpack --reporter dot --webpack-config webpack.test.config.js --recursive test/unit",
"test-ci": "npm run lint && npm run test",
"release": "npm run build && build --x64",
"release-upgrade-test": "npm run build && build --x64 --config.publish.provider=generic --config.publish.url=http://localhost:9000",
"release:win64": "npm run build && build --windows --x64",
"release-upgrade-test:win64": "npm run build && build --windows --x64 --config.publish.provider=generic --config.publish.url=http://localhost:9000"
},
"dependencies": {
"@james-proxy/james-browser-launcher": "^1.3.2",
"@sentry/browser": "^4.5.3",
"@sentry/node": "^4.5.3",
"electron-updater": "3.1.2",
"font-awesome": "^4.5.0",
"history": "^4.7.2",
"hoxy": "^3.3.1",
"lodash.throttle": "^4.1.0",
"materialize-css": "^0.100.2",
"nedb": "^1.7.1",
"prop-types": "^15.6.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-loadable": "^5.3.1",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"redux": "^3.5.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.0.1",
"reselect": "^4.0.0",
"source-map-support": "^0.5.3",
"uniqid": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.0",
"babel-loader": "^8.0.4",
"babel-preset-power-assert": "^3.0.0",
"electron": "^3.0.2",
"electron-builder": "20.28.4",
"electron-localshortcut": "^3.0.4",
"electron-webpack": "2.3.1",
"eslint": "^4.16.0",
"eslint-plugin-react": "^7.6.0",
"mocha": "^5.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"node-sass": "4.7.2",
"power-assert": "^1.4.4",
"redux-mock-store": "^1.4.0",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"sinon": "^4.2.1",
"webpack": "^4.20.2",
"webpack-sources": "^1.3.0"
},
"electronWebpack": {
"title": "James Proxy",
"renderer": {
"dll": [
"react",
"react-dom",
"react-router-dom",
"react-loadable",
"redux",
"redux-thunk",
"redux-logger",
"react-router-redux",
"history",
"font-awesome",
"materialize-css",
"source-map-support"
]
}
},
"build": {
"appId": "com.jamesproxy.james",
"productName": "James",
"mac": {
"category": "public.app-category.productivity",
"icon": "resources/icon.icns"
},
"dmg": {
"icon": "resources/icon.icns",
"background": "resources/icon.png"
},
"win": {
"icon": "resources/icon.ico"
},
"linux": {
"target": [
"AppImage"
],
"category": "WebDevelopment",
"synopsis": "Web proxy"
},
"directories": {
"buildResources": "resources",
"output": "binaries"
},
"publish": "github"
}
}