-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
104 lines (104 loc) · 3.94 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
{
"name": "sliver-gui",
"version": "0.0.7",
"description": "Cross-platform GUI for the Sliver implant framework",
"license": "GPLv3",
"homepage": "https://github.com/BishopFox/sliver-gui",
"author": {
"name": "moloch",
"email": "[email protected]"
},
"repository": "https://github.com/BishopFox/sliver-gui",
"main": "main.js",
"private": true,
"scripts": {
"ng": "ng",
"build:worker": "cd main/workers/worker && npm run build",
"build": "npm run electron:main-tsc && ng build",
"build:dev": "npm run version && npm run build:worker && npm run build -- -c dev",
"build:prod": "npm run clean && npm run version && npm run build:worker && npm run build -- -c production",
"electron:main-tsc": "tsc -p tsconfig.main.json",
"electron:local": "npm run build:dev && electron .",
"electron:clean": "rm -rf ./dist ./release",
"publish:macos": "npm run build:prod && electron-builder build --config ./builder/macos.json --mac --publish=never",
"publish:windows_exe": "npm run build:prod && electron-builder build --config ./builder/windows-exe.json --windows --publish=never",
"publish:windows": "npm run build:prod && electron-builder build --config ./builder/windows-nsis.json --windows --publish=never",
"publish:linux": "npm run build:prod && electron-builder build --config ./builder/linux.json --linux --publish=never",
"clean": "rm -rf ./dist",
"i18n": "ng extract-i18n --output-path ./src/locale/ && xliffmerge --profile ./src/locale/xliffmerge.json en fr ja es zh",
"version": "ts-node -O \"{\\\"module\\\": \\\"commonjs\\\"}\" ./version.ts",
"test": "ng test",
"e2e": "npm run build:prod && mocha --timeout 300000 --require ts-node/register e2e/**/*.spec.ts",
"postinstall": "ngcc"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.0.6",
"@angular/cli": "14.0.6",
"@angular/common": "14.0.6",
"@angular/compiler": "14.0.6",
"@angular/compiler-cli": "14.0.6",
"@angular/core": "14.0.6",
"@angular/forms": "14.0.6",
"@angular/language-service": "14.0.6",
"@angular/platform-browser": "14.0.6",
"@angular/platform-browser-dynamic": "14.0.6",
"@angular/router": "14.0.6",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "2.0.8",
"@types/mocha": "5.2.7",
"@types/node": "^14.17.32",
"@types/node-notifier": "^8.0.0",
"@types/sequelize": "^4.28.9",
"@types/sprintf-js": "^1.1.2",
"@types/uuid": "^3.4.8",
"codelyzer": "^6.0.0",
"core-js": "3.3.3",
"electron": "^19.0.8",
"electron-builder": "^23.1.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ngx-i18nsupport": "^0.17.1",
"ts-node": "8.4.1",
"tslint": "~6.1.0",
"typescript": "~4.7.4",
"webpack-cli": "^4.9.2",
"zone.js": "~0.11.4"
},
"dependencies": {
"@angular/animations": "^14.0.6",
"@angular/cdk": "^14.0.5",
"@angular/flex-layout": "^11.0.0-beta.33",
"@angular/localize": "^14.0.6",
"@angular/material": "^14.0.5",
"@fortawesome/fontawesome-free": "^5.12.1",
"@materia-ui/ngx-monaco-editor": "^4.0.2",
"ajv": "^6.12.0",
"angular-resizable-element": "^3.3.4",
"electron-context-menu": "^3.1.1",
"electron-updater": "^4.3.9",
"google-protobuf": "^3.19.4",
"handlebars": "^4.7.6",
"js-base64": "^3.6.0",
"material-design-icons": "^3.0.1",
"moment": "^2.29.2",
"monaco-editor": "^0.18.1",
"node-gyp": "^8.4.1",
"node-notifier": "^9.0.0",
"protobufjs": "^6.11.3",
"rxjs": "^6.6.6",
"sequelize": "^6.3.5",
"shlex": "^2.0.2",
"sliver-script": "^1.2.4",
"sprintf-js": "^1.0.3",
"sqlite3": "^5.0.3",
"uuid": "^8.3.1",
"winston": "^3.3.3",
"xterm": "^4.4.0",
"xterm-addon-fit": "^0.4.0"
}
}