2017-09-25 11:07:52 +00:00
|
|
|
{
|
|
|
|
"name": "gns3-web-ui",
|
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
|
|
|
"version": "0.0.1-beta.0",
|
|
|
|
"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}\"",
|
|
|
|
"prettier:write": "yarn prettier:base -- --write \"src/**/*.{ts,js,html,scss}\""
|
2017-09-25 11:07:52 +00:00
|
|
|
},
|
|
|
|
"private": true,
|
|
|
|
"dependencies": {
|
2018-11-19 07:28:24 +00:00
|
|
|
"@angular/animations": "^7.0.4",
|
|
|
|
"@angular/cdk": "^7.0.4",
|
|
|
|
"@angular/common": "^7.0.4",
|
|
|
|
"@angular/compiler": "^7.0.4",
|
|
|
|
"@angular/core": "^7.0.4",
|
|
|
|
"@angular/forms": "^7.0.4",
|
|
|
|
"@angular/http": "^7.0.4",
|
|
|
|
"@angular/material": "^7.0.4",
|
|
|
|
"@angular/platform-browser": "^7.0.4",
|
|
|
|
"@angular/platform-browser-dynamic": "^7.0.4",
|
|
|
|
"@angular/router": "^7.0.4",
|
|
|
|
"@ng-bootstrap/ng-bootstrap": "^4.0.0",
|
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",
|
|
|
|
"bootstrap": "4.1.3",
|
2018-07-06 09:31:44 +00:00
|
|
|
"core-js": "^2.5.7",
|
|
|
|
"css-tree": "^1.0.0-alpha.29",
|
2018-04-11 06:44:20 +00:00
|
|
|
"d3-ng2-service": "^2.1.0",
|
2018-07-06 09:31:44 +00:00
|
|
|
"electron-settings": "^3.2.0",
|
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",
|
2018-11-19 07:28:24 +00:00
|
|
|
"ngx-electron": "^2.0.0",
|
2018-07-19 08:36:12 +00:00
|
|
|
"notosans-fontface": "^1.1.0",
|
2018-11-19 07:28:24 +00:00
|
|
|
"npm-check-updates": "^2.14.3",
|
|
|
|
"raven-js": "^3.27.0",
|
|
|
|
"rxjs": "^6.3.3",
|
|
|
|
"rxjs-compat": "^6.3.3",
|
2018-04-10 10:45:40 +00:00
|
|
|
"typeface-roboto": "^0.0.54",
|
2018-11-19 07:28:24 +00:00
|
|
|
"yargs": "^12.0.4",
|
2018-04-11 06:44:20 +00:00
|
|
|
"zone.js": "^0.8.26"
|
2017-09-25 11:07:52 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-11-26 20:01:55 +00:00
|
|
|
"@angular-devkit/build-angular": "~0.11.0",
|
2018-11-19 07:28:24 +00:00
|
|
|
"@angular/cli": "^7.0.6",
|
|
|
|
"@angular/compiler-cli": "^7.0.4",
|
|
|
|
"@angular/language-service": "^7.0.4",
|
|
|
|
"@sentry/electron": "^0.13.0",
|
|
|
|
"@types/jasmine": "~3.3.0",
|
|
|
|
"@types/jasminewd2": "~2.0.6",
|
|
|
|
"@types/node": "~10.12.9",
|
|
|
|
"codelyzer": "~4.5.0",
|
|
|
|
"electron": "3.0.9",
|
|
|
|
"electron-builder": "^20.36.2",
|
|
|
|
"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",
|
2018-11-19 07:28:24 +00:00
|
|
|
"karma": "~3.1.1",
|
2017-10-18 11:30:38 +00:00
|
|
|
"karma-chrome-launcher": "~2.2.0",
|
2017-09-25 11:07:52 +00:00
|
|
|
"karma-cli": "~1.0.1",
|
2018-11-19 07:28:24 +00:00
|
|
|
"karma-coverage-istanbul-reporter": "^2.0.4",
|
|
|
|
"karma-jasmine": "~2.0.1",
|
|
|
|
"karma-jasmine-html-reporter": "^1.4.0",
|
|
|
|
"node-sass": "^4.10.0",
|
|
|
|
"popper.js": "^1.14.5",
|
2018-12-10 12:44:49 +00:00
|
|
|
"prettier": "^1.15.2",
|
2018-11-19 07:28:24 +00:00
|
|
|
"protractor": "~5.4.1",
|
|
|
|
"ts-mockito": "^2.3.1",
|
|
|
|
"ts-node": "~7.0.1",
|
|
|
|
"tslint": "~5.11.0",
|
2018-12-10 12:44:49 +00:00
|
|
|
"tslint-config-prettier": "^1.16.0",
|
2018-11-19 07:28:24 +00:00
|
|
|
"typescript": "3.1.6"
|
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
|
|
|
}
|