-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.06 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
{
"name": "electron-anyproxy",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/ccforeverd/electron-anyproxy.git",
"author": "ccforeverd <[email protected]>",
"license": "The Unlicense",
"private": false,
"scripts": {
"dev": "nodemon --exec electron src/main/index.js",
"dev:loop": "node build/dev-curl-loop.js"
},
"dependencies": {
"anyproxy": "^4.1.3",
"electron": "^10.1.3",
"lodash": "^4.17.20",
"nodemon": "^2.0.5",
"tcp-port-used": "^1.0.1",
"ws": "^7.3.1"
},
"devDependencies": {
"eslint": "^7.11.0"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
".git",
"node_modules/**/node_modules",
"src/renderer"
],
"verbose": true,
"execMap": {
"js": "node --harmony"
},
"events": {
"restart": "osascript -e 'display notification \"App restarted due to:\n'$FILENAME'\" with title \"nodemon\"'"
},
"watch": [
"build/",
"src/main"
],
"env": {
"NODE_ENV": "development"
},
"ext": "js,json"
}
}