gns3-web-ui/package.json

115 lines
3.8 KiB
JSON
Raw Normal View History

2017-09-25 11:07:52 +00:00
{
"name": "gns3-web-ui",
2019-07-04 07:03:19 +00:00
"version": "2019.2.0-alpha.5",
"author": {
"name": "GNS3 Technology Inc.",
"email": "developers@gns3.com"
},
"description": "Graphical Network Simulator-3 is a network software emulator.",
"license": "GPLv3",
2018-01-03 15:46:15 +00:00
"main": "main.js",
"repository": {
2018-01-18 09:50:46 +00:00
"type": "git",
"url": "https://github.com/GNS3/gns3-web-ui.git"
},
2017-09-25 11:07:52 +00:00
"scripts": {
"ng": "ng",
"start": "ng serve",
"startforelectron": "ng serve --configuration=electronDev",
2017-09-25 11:07:52 +00:00
"build": "ng build",
"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\"",
"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",
"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}\"",
"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-04-29 09:01:06 +00:00
"@angular/animations": "^7.2.14",
"@angular/cdk": "^7.3.7",
"@angular/common": "^7.2.14",
"@angular/compiler": "^7.2.14",
"@angular/core": "^7.2.14",
"@angular/forms": "^7.2.14",
"@angular/http": "^7.2.14",
"@angular/material": "^7.3.7",
"@angular/platform-browser": "^7.2.14",
"@angular/platform-browser-dynamic": "^7.2.14",
"@angular/router": "^7.2.14",
2018-04-04 14:05:29 +00:00
"angular-persistence": "^1.0.1",
"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-04-29 09:01:06 +00:00
"core-js": "^3.0.1",
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",
"ini": "^1.3.5",
"material-design-icons": "^3.0.1",
"ng2-file-upload": "^1.3.0",
2019-02-27 09:04:34 +00:00
"ngx-electron": "^2.1.1",
2019-04-29 09:01:06 +00:00
"node-fetch": "^2.4.1",
"notosans-fontface": "^1.1.0",
"raven-js": "^3.27.0",
2019-04-29 09:01:06 +00:00
"rxjs": "^6.5.1",
"rxjs-compat": "^6.5.1",
"tree-kill": "^1.2.1",
"typeface-roboto": "^0.0.54",
2019-04-29 09:01:06 +00:00
"yargs": "^13.2.2",
"zone.js": "^0.9.0"
2017-09-25 11:07:52 +00:00
},
"devDependencies": {
2019-04-29 09:01:06 +00:00
"@angular-devkit/build-angular": "~0.13.8",
"@angular/cli": "^7.3.8",
"@angular/compiler-cli": "^7.2.14",
"@angular/language-service": "^7.2.14",
"@sentry/cli": "^1.41.2",
"@sentry/electron": "^0.17.1",
"@types/jasmine": "~3.3.12",
"@types/jasminewd2": "~2.0.6",
"@types/node": "~12.0.0",
2019-04-29 09:01:06 +00:00
"codelyzer": "~5.0.1",
"electron": "5.0.2",
2019-04-29 09:01:06 +00:00
"electron-builder": "20.39.0",
"jasmine-core": "~3.4.0",
2017-10-18 11:30:38 +00:00
"jasmine-spec-reporter": "~4.2.1",
2019-04-29 09:01:06 +00:00
"jquery": "^3.4.0",
"karma": "~4.1.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",
"karma-jasmine": "~2.0.1",
2019-04-29 09:01:06 +00:00
"karma-jasmine-html-reporter": "^1.4.2",
2019-02-27 09:04:34 +00:00
"license-checker": "^25.0.1",
2019-04-29 09:01:06 +00:00
"node-sass": "^4.12.0",
"popper.js": "^1.15.0",
"prettier": "^1.17.0",
"protractor": "~5.4.2",
2019-04-29 09:01:06 +00:00
"replace": "^1.1.0",
"ts-mockito": "^2.3.1",
2019-04-29 09:01:06 +00:00
"ts-node": "~8.1.0",
"tslint": "~5.16.0",
2019-02-27 09:04:34 +00:00
"tslint-config-prettier": "^1.18.0",
"typescript": "<3.3.0"
},
"greenkeeper": {
"ignore": [
"typescript"
]
2018-12-07 13:08:55 +00:00
}
2017-09-25 11:07:52 +00:00
}