2017-09-25 11:07:52 +00:00
|
|
|
{
|
|
|
|
"name": "gns3-web-ui",
|
2019-03-22 13:07:02 +00:00
|
|
|
"version": "2019.1.0-alpha.3dev",
|
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",
|
2018-07-06 11:16:45 +00:00
|
|
|
"buildforelectron": "ng build --configuration=electronProd",
|
|
|
|
"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",
|
|
|
|
"postbuildforelectron": "node set-variables-in-env.js --unset src/environments/environment.electron.prod.ts"
|
2017-09-25 11:07:52 +00:00
|
|
|
},
|
|
|
|
"private": true,
|
|
|
|
"dependencies": {
|
2019-02-27 09:04:34 +00:00
|
|
|
"@angular/animations": "^7.2.7",
|
|
|
|
"@angular/cdk": "^7.3.3",
|
|
|
|
"@angular/common": "^7.2.7",
|
|
|
|
"@angular/compiler": "^7.2.7",
|
|
|
|
"@angular/core": "^7.2.7",
|
|
|
|
"@angular/forms": "^7.2.7",
|
|
|
|
"@angular/http": "^7.2.7",
|
|
|
|
"@angular/material": "^7.3.3",
|
|
|
|
"@angular/platform-browser": "^7.2.7",
|
|
|
|
"@angular/platform-browser-dynamic": "^7.2.7",
|
|
|
|
"@angular/router": "^7.2.7",
|
2018-04-04 14:05:29 +00:00
|
|
|
"angular-persistence": "^1.0.1",
|
2018-11-19 07:28:24 +00:00
|
|
|
"angular2-hotkeys": "^2.1.4",
|
|
|
|
"angular2-indexeddb": "^1.2.3",
|
2019-02-27 08:27:01 +00:00
|
|
|
"bootstrap": "4.3.1",
|
2019-01-09 12:45:37 +00:00
|
|
|
"command-exists": "^1.2.8",
|
2019-02-27 09:04:34 +00:00
|
|
|
"core-js": "^2.6.5",
|
2018-07-06 09:31:44 +00:00
|
|
|
"css-tree": "^1.0.0-alpha.29",
|
2018-04-11 06:44:20 +00:00
|
|
|
"d3-ng2-service": "^2.1.0",
|
2018-12-10 13:08:47 +00:00
|
|
|
"hammerjs": "^2.0.8",
|
2019-03-05 08:06:15 +00:00
|
|
|
"ini": "^1.3.5",
|
2018-04-10 10:45:40 +00:00
|
|
|
"material-design-icons": "^3.0.1",
|
2018-10-25 09:40:37 +00:00
|
|
|
"ng2-file-upload": "^1.3.0",
|
2019-02-27 09:04:34 +00:00
|
|
|
"ngx-electron": "^2.1.1",
|
2019-02-07 12:35:07 +00:00
|
|
|
"node-fetch": "^2.3.0",
|
2018-07-19 08:36:12 +00:00
|
|
|
"notosans-fontface": "^1.1.0",
|
2018-11-19 07:28:24 +00:00
|
|
|
"raven-js": "^3.27.0",
|
2019-02-27 09:04:34 +00:00
|
|
|
"rxjs": "^6.4.0",
|
|
|
|
"rxjs-compat": "^6.4.0",
|
2019-03-05 08:06:15 +00:00
|
|
|
"tree-kill": "^1.2.1",
|
2018-04-10 10:45:40 +00:00
|
|
|
"typeface-roboto": "^0.0.54",
|
2019-02-27 09:04:34 +00:00
|
|
|
"yargs": "^13.2.1",
|
|
|
|
"zone.js": "^0.8.29"
|
2017-09-25 11:07:52 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-02-27 09:04:34 +00:00
|
|
|
"@angular-devkit/build-angular": "~0.13.3",
|
|
|
|
"@angular/cli": "^7.3.3",
|
|
|
|
"@angular/compiler-cli": "^7.2.7",
|
|
|
|
"@angular/language-service": "^7.2.7",
|
2019-03-27 09:50:03 +00:00
|
|
|
"@sentry/cli": "^1.40.0",
|
2019-02-27 09:04:34 +00:00
|
|
|
"@sentry/electron": "^0.16.0",
|
|
|
|
"@types/jasmine": "~3.3.9",
|
2018-11-19 07:28:24 +00:00
|
|
|
"@types/jasminewd2": "~2.0.6",
|
2019-02-27 09:04:34 +00:00
|
|
|
"@types/node": "~11.9.5",
|
2018-11-19 07:28:24 +00:00
|
|
|
"codelyzer": "~4.5.0",
|
2019-02-27 09:04:34 +00:00
|
|
|
"electron": "4.0.6",
|
2019-02-27 11:04:09 +00:00
|
|
|
"electron-builder": "20.38.2",
|
2018-11-19 07:28:24 +00:00
|
|
|
"jasmine-core": "~3.3.0",
|
2017-10-18 11:30:38 +00:00
|
|
|
"jasmine-spec-reporter": "~4.2.1",
|
2018-01-23 08:01:58 +00:00
|
|
|
"jquery": "^3.3.1",
|
2019-02-27 09:04:34 +00:00
|
|
|
"karma": "~4.0.0",
|
2017-10-18 11:30:38 +00:00
|
|
|
"karma-chrome-launcher": "~2.2.0",
|
2018-12-10 12:59:20 +00:00
|
|
|
"karma-cli": "~2.0.0",
|
2019-02-27 09:04:34 +00:00
|
|
|
"karma-coverage-istanbul-reporter": "^2.0.5",
|
2018-11-19 07:28:24 +00:00
|
|
|
"karma-jasmine": "~2.0.1",
|
|
|
|
"karma-jasmine-html-reporter": "^1.4.0",
|
2019-02-27 09:04:34 +00:00
|
|
|
"license-checker": "^25.0.1",
|
2018-12-10 12:59:20 +00:00
|
|
|
"node-sass": "^4.11.0",
|
2019-02-27 09:04:34 +00:00
|
|
|
"popper.js": "^1.14.7",
|
|
|
|
"prettier": "^1.16.4",
|
2019-01-04 11:57:58 +00:00
|
|
|
"protractor": "~5.4.2",
|
2019-01-25 12:48:22 +00:00
|
|
|
"replace": "^1.0.1",
|
2018-11-19 07:28:24 +00:00
|
|
|
"ts-mockito": "^2.3.1",
|
2019-02-27 09:04:34 +00:00
|
|
|
"ts-node": "~8.0.2",
|
|
|
|
"tslint": "~5.13.0",
|
|
|
|
"tslint-config-prettier": "^1.18.0",
|
|
|
|
"typescript": "<3.3.0"
|
2018-01-23 09:19:45 +00:00
|
|
|
},
|
|
|
|
"greenkeeper": {
|
|
|
|
"ignore": [
|
|
|
|
"typescript"
|
|
|
|
]
|
2018-12-07 13:08:55 +00:00
|
|
|
}
|
2017-09-25 11:07:52 +00:00
|
|
|
}
|