2017-09-25 11:07:52 +00:00
|
|
|
{
|
|
|
|
"name": "gns3-web-ui",
|
2024-12-02 01:05:45 +00:00
|
|
|
"version": "2.2.52",
|
2019-01-08 13:31:24 +00:00
|
|
|
"author": {
|
|
|
|
"name": "GNS3 Technology Inc.",
|
|
|
|
"email": "developers@gns3.com"
|
|
|
|
},
|
|
|
|
"description": "Graphical Network Simulator-3 is a network software emulator.",
|
Icons set
Build electron for Linux, Windows and macOS. Ref. #18, #19, #20, #22
Include gns3server in electron app. Ref. #21
Bumping version Ref. #24
CD and Release for AppVeyor, CircleCi and TCI. Ref. #25, #26, #27, #28
Make lighter artifacts #31
Build gns3server for Linux, Windows and macOS. Ref. #33, #34, #35
2018-01-04 11:50:20 +00:00
|
|
|
"license": "GPLv3",
|
2018-01-03 15:46:15 +00:00
|
|
|
"main": "main.js",
|
Icons set
Build electron for Linux, Windows and macOS. Ref. #18, #19, #20, #22
Include gns3server in electron app. Ref. #21
Bumping version Ref. #24
CD and Release for AppVeyor, CircleCi and TCI. Ref. #25, #26, #27, #28
Make lighter artifacts #31
Build gns3server for Linux, Windows and macOS. Ref. #33, #34, #35
2018-01-04 11:50:20 +00:00
|
|
|
"repository": {
|
2018-01-18 09:50:46 +00:00
|
|
|
"type": "git",
|
Icons set
Build electron for Linux, Windows and macOS. Ref. #18, #19, #20, #22
Include gns3server in electron app. Ref. #21
Bumping version Ref. #24
CD and Release for AppVeyor, CircleCi and TCI. Ref. #25, #26, #27, #28
Make lighter artifacts #31
Build gns3server for Linux, Windows and macOS. Ref. #33, #34, #35
2018-01-04 11:50:20 +00:00
|
|
|
"url": "https://github.com/GNS3/gns3-web-ui.git"
|
|
|
|
},
|
2017-09-25 11:07:52 +00:00
|
|
|
"scripts": {
|
|
|
|
"ng": "ng",
|
|
|
|
"start": "ng serve",
|
2018-07-06 11:16:45 +00:00
|
|
|
"startforelectron": "ng serve --configuration=electronDev",
|
2017-09-25 11:07:52 +00:00
|
|
|
"build": "ng build",
|
2021-04-12 15:00:20 +00:00
|
|
|
"buildforproduction": "ng build --source-map=false --build-optimizer --configuration=production --base-href /static/web-ui/",
|
2019-09-26 20:16:43 +00:00
|
|
|
"buildforelectron": "ng build --configuration=electronProd",
|
2018-07-06 11:16:45 +00:00
|
|
|
"buildforgithub": "ng build --configuration=githubProd",
|
2017-09-25 11:07:52 +00:00
|
|
|
"test": "ng test",
|
|
|
|
"lint": "ng lint",
|
2018-01-03 15:46:15 +00:00
|
|
|
"e2e": "ng e2e",
|
2018-04-06 11:15:23 +00:00
|
|
|
"electron": "electron .",
|
|
|
|
"electrondev": "concurrently -k \"yarn startforelectron\" \"electron . -e dev\"",
|
Icons set
Build electron for Linux, Windows and macOS. Ref. #18, #19, #20, #22
Include gns3server in electron app. Ref. #21
Bumping version Ref. #24
CD and Release for AppVeyor, CircleCi and TCI. Ref. #25, #26, #27, #28
Make lighter artifacts #31
Build gns3server for Linux, Windows and macOS. Ref. #33, #34, #35
2018-01-04 11:50:20 +00:00
|
|
|
"distlinux": "yarn buildforelectron && electron-builder --linux --x64",
|
|
|
|
"distwin": "yarn buildforelectron && electron-builder --win --x64",
|
|
|
|
"distmac": "yarn buildforelectron && electron-builder --mac --x64",
|
2018-11-26 15:45:13 +00:00
|
|
|
"release": "build",
|
2018-12-10 12:44:49 +00:00
|
|
|
"coverage": "ng test --watch=false --code-coverage",
|
|
|
|
"prettier:base": "prettier",
|
|
|
|
"prettier:check": "yarn prettier:base -- --list-different \"src/**/*.{ts,js,html,scss}\"",
|
2018-12-10 13:04:49 +00:00
|
|
|
"prettier:write": "yarn prettier:base -- --write \"src/**/*.{ts,js,html,scss}\"",
|
2019-01-25 12:48:22 +00:00
|
|
|
"generate-licenses-file": "yarn license-checker --production --csv --out licenses.csv",
|
2019-02-01 10:01:03 +00:00
|
|
|
"prebuildforelectron": "node set-variables-in-env.js --set src/environments/environment.electron.prod.ts",
|
2020-07-10 04:13:48 +00:00
|
|
|
"postbuildforelectron": "node set-variables-in-env.js --unset src/environments/environment.electron.prod.ts",
|
2021-11-09 22:28:52 +00:00
|
|
|
"postinstall": "ngcc --properties es5 browser module main --first-only --create-ivy-entry-points && ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
|
2020-07-10 04:13:48 +00:00
|
|
|
"snyk-protect": "snyk protect",
|
|
|
|
"prepare": "yarn run snyk-protect"
|
2017-09-25 11:07:52 +00:00
|
|
|
},
|
|
|
|
"private": true,
|
|
|
|
"dependencies": {
|
2021-11-09 23:12:32 +00:00
|
|
|
"@angular/animations": "^12.2.12",
|
|
|
|
"@angular/cdk": "^12.2.12",
|
|
|
|
"@angular/common": "^12.2.12",
|
|
|
|
"@angular/compiler": "^12.2.12",
|
|
|
|
"@angular/core": "^12.2.12",
|
|
|
|
"@angular/forms": "^12.2.12",
|
|
|
|
"@angular/material": "^12.2.12",
|
|
|
|
"@angular/platform-browser": "^12.2.12",
|
|
|
|
"@angular/platform-browser-dynamic": "^12.2.12",
|
|
|
|
"@angular/router": "^12.2.12",
|
2021-11-07 15:48:17 +00:00
|
|
|
"@sentry/browser": "^6.14.1",
|
2021-10-06 11:34:19 +00:00
|
|
|
"@types/jest": "^27.0.2",
|
2021-07-30 08:57:19 +00:00
|
|
|
"@types/mocha": "^9.0.0",
|
2021-11-07 15:48:17 +00:00
|
|
|
"@types/react": "^17.0.34",
|
|
|
|
"@types/react-dom": "^17.0.11",
|
2021-10-06 11:34:19 +00:00
|
|
|
"angular-draggable-droppable": "^5.0.0",
|
2021-06-08 16:03:18 +00:00
|
|
|
"angular-resizable-element": "^3.4.0",
|
2021-11-02 21:39:08 +00:00
|
|
|
"bootstrap": "^5.1.3",
|
2020-06-29 11:02:59 +00:00
|
|
|
"command-exists": "^1.2.9",
|
2021-11-02 21:39:08 +00:00
|
|
|
"core-js": "^3.19.1",
|
2021-11-07 15:48:17 +00:00
|
|
|
"css-tree": "^1.1.3",
|
2021-04-07 20:43:19 +00:00
|
|
|
"d3-ng2-service": "^2.2.0",
|
2021-01-28 00:07:51 +00:00
|
|
|
"eev": "^0.1.5",
|
2021-04-07 20:43:19 +00:00
|
|
|
"ini": "^2.0.0",
|
2023-12-06 05:10:12 +00:00
|
|
|
"ipaddr.js": "^2.1.0",
|
2018-04-10 10:45:40 +00:00
|
|
|
"material-design-icons": "^3.0.1",
|
2021-05-27 18:12:06 +00:00
|
|
|
"mousetrap": "^1.6.5",
|
2020-10-13 14:12:14 +00:00
|
|
|
"ng-circle-progress": "^1.6.0",
|
2021-04-07 20:43:19 +00:00
|
|
|
"ng2-file-upload": "^1.4.0",
|
2020-01-21 14:34:44 +00:00
|
|
|
"ngx-childprocess": "^0.0.6",
|
2021-06-08 16:03:18 +00:00
|
|
|
"ngx-device-detector": "^2.1.1",
|
2021-04-07 20:43:19 +00:00
|
|
|
"ngx-electron": "^2.2.0",
|
2022-10-07 08:23:13 +00:00
|
|
|
"node-fetch": "^3.2.10",
|
2020-09-23 09:09:42 +00:00
|
|
|
"notosans-fontface": "1.2.2",
|
2021-10-06 11:34:19 +00:00
|
|
|
"prettier-plugin-organize-imports": "^2.3.4",
|
2021-08-04 09:10:41 +00:00
|
|
|
"rxjs": "^6.6.7",
|
|
|
|
"rxjs-compat": "^6.6.7",
|
2021-04-07 20:43:19 +00:00
|
|
|
"save-svg-as-png": "^1.4.17",
|
2022-12-20 13:40:30 +00:00
|
|
|
"snyk": "^1.1064.0",
|
2021-09-14 08:06:47 +00:00
|
|
|
"spark-md5": "^3.0.2",
|
2021-08-24 11:55:15 +00:00
|
|
|
"svg-crowbar": "^0.7.0",
|
2021-04-07 20:43:19 +00:00
|
|
|
"tree-kill": "^1.2.2",
|
2021-08-24 11:55:15 +00:00
|
|
|
"tslib": "^2.3.1",
|
2020-11-28 00:31:20 +00:00
|
|
|
"typeface-roboto": "^1.1.13",
|
2021-11-07 15:48:17 +00:00
|
|
|
"xterm": "^4.15.0",
|
2020-06-30 14:27:38 +00:00
|
|
|
"xterm-addon-attach": "^0.6.0",
|
2021-04-07 20:43:19 +00:00
|
|
|
"xterm-addon-fit": "^0.5.0",
|
2021-10-06 11:34:19 +00:00
|
|
|
"yargs": "^17.2.1",
|
2021-05-27 20:17:22 +00:00
|
|
|
"zone.js": "~0.11.4"
|
2017-09-25 11:07:52 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-11-09 23:12:32 +00:00
|
|
|
"@angular-devkit/build-angular": "^12.2.12",
|
|
|
|
"@angular/cli": "^12.2.12",
|
|
|
|
"@angular/compiler-cli": "^12.2.12",
|
|
|
|
"@angular/language-service": "^12.2.12",
|
2021-11-08 17:03:17 +00:00
|
|
|
"@sentry/cli": "^1.71.0",
|
2021-10-06 11:34:19 +00:00
|
|
|
"@sentry/electron": "^2.5.4",
|
2021-11-07 15:48:17 +00:00
|
|
|
"@types/jasmine": "^3.10.2",
|
2021-07-30 08:57:19 +00:00
|
|
|
"@types/jasminewd2": "^2.0.10",
|
2021-11-02 21:39:08 +00:00
|
|
|
"@types/node": "16.11.6",
|
2021-05-10 12:18:38 +00:00
|
|
|
"codelyzer": "^6.0.2",
|
2022-03-25 18:37:29 +00:00
|
|
|
"electron": "^13.6.6",
|
2021-11-08 17:03:17 +00:00
|
|
|
"electron-builder": "^22.9.1",
|
2021-01-13 10:59:45 +00:00
|
|
|
"file-loader": "^6.2.0",
|
2021-11-02 21:39:08 +00:00
|
|
|
"jasmine-core": "~3.10.1",
|
2021-05-10 14:45:36 +00:00
|
|
|
"jasmine-spec-reporter": "~7.0.0",
|
2021-04-07 20:43:19 +00:00
|
|
|
"jquery": "^3.6.0",
|
2022-03-07 00:16:14 +00:00
|
|
|
"karma": "^6.3.16",
|
2020-11-28 00:31:20 +00:00
|
|
|
"karma-chrome-launcher": "~3.1.0",
|
2020-06-30 11:30:48 +00:00
|
|
|
"karma-cli": "^2.0.0",
|
2021-04-07 20:43:19 +00:00
|
|
|
"karma-coverage-istanbul-reporter": "~3.0.3",
|
|
|
|
"karma-jasmine": "~4.0.1",
|
2021-07-30 08:57:19 +00:00
|
|
|
"karma-jasmine-html-reporter": "^1.7.0",
|
2019-02-27 09:04:34 +00:00
|
|
|
"license-checker": "^25.0.1",
|
2020-06-29 11:02:59 +00:00
|
|
|
"popper.js": "^1.16.1",
|
2021-10-06 11:34:19 +00:00
|
|
|
"prettier": "^2.4.1",
|
2020-06-30 11:30:48 +00:00
|
|
|
"protractor": "^7.0.0",
|
2021-04-07 20:43:19 +00:00
|
|
|
"replace": "^1.2.1",
|
2020-06-30 11:30:48 +00:00
|
|
|
"rxjs-tslint": "^0.1.8",
|
2020-06-29 11:02:59 +00:00
|
|
|
"ts-mockito": "^2.6.1",
|
2021-11-02 21:39:08 +00:00
|
|
|
"ts-node": "~10.4.0",
|
2020-09-23 09:09:42 +00:00
|
|
|
"tslint": "^6.1.3",
|
2019-02-27 09:04:34 +00:00
|
|
|
"tslint-config-prettier": "^1.18.0",
|
2021-11-09 23:12:32 +00:00
|
|
|
"typescript": "4.2.3",
|
2023-03-14 17:07:32 +00:00
|
|
|
"webpack": "5.76.0",
|
2020-11-28 00:03:39 +00:00
|
|
|
"yarn-upgrade-all": "^0.5.4"
|
2018-01-23 09:19:45 +00:00
|
|
|
},
|
|
|
|
"greenkeeper": {
|
|
|
|
"ignore": [
|
|
|
|
"typescript"
|
|
|
|
]
|
2020-07-10 04:13:48 +00:00
|
|
|
},
|
|
|
|
"snyk": true
|
2022-04-27 10:48:47 +00:00
|
|
|
}
|