-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.42 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
{
"name": "ipchanger",
"version": "1.0.0",
"description": "An utility program to easily change IP addresses",
"main": "index.js",
"scripts": {
"start": "npm run build:live",
"build:live": "nodemon --ignore Data/*.json --exec ./node_modules/.bin/ts-node -- ./index.ts",
"build": "tsc",
"debug": "npm run build && node --nolazy --inspect-brk=9229 ./dist/index.js",
"gulp": "gulp",
"electron": "npm run gulp && electron ./dist",
"package_win_x64": "electron-packager . --asar --platform=win32 --arch=x64 --icon=icon.ico --out=bin/ --version-string.FileDescription=\"A GUI based tool to change IP addresses on Windows\" --version-string.ProductName=\"Ip Changer\" --win32metadata.requested-execution-level=requireAdministrator --overwrite"
},
"dependencies": {
"body-parser": "^1.17.2",
"electron-window-state": "^5.0.3",
"express": "^4.15.4",
"is-ip": "^2.0.0"
},
"devDependencies": {
"@types/async": "2.0.48",
"@types/body-parser": "1.16.8",
"@types/express": "4.11.1",
"@types/express-serve-static-core": "^4.0.50",
"@types/is-ip": "^2.0.2",
"@types/node": "^9.6.1",
"del": "^3.0.0",
"electron": "^4.0.4",
"electron-packager": "^13.0.1",
"es6-promise": "4.2.4",
"gulp": "^4.0.0",
"gulp-exec": "^3.0.2",
"gulp-typescript": "^5.0.0",
"nodemon": "1.17.3",
"ts-node": "5.0.1",
"tslint": "^5.11.0",
"typescript": "2.8.1"
}
}