gns3-web-ui/package.json

109 lines
3.5 KiB
JSON
Raw Normal View History

2017-09-25 11:07:52 +00:00
{
"name": "gns3-web-ui",
"version": "0.0.1-beta.0",
"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"
2017-09-25 11:07:52 +00:00
},
"private": true,
"dependencies": {
2018-12-19 08:29:16 +00:00
"@angular/animations": "^7.1.4",
"@angular/cdk": "^7.2.0",
"@angular/common": "^7.1.4",
"@angular/compiler": "^7.1.4",
"@angular/core": "^7.1.4",
"@angular/forms": "^7.1.4",
"@angular/http": "^7.1.4",
"@angular/material": "^7.2.0",
"@angular/platform-browser": "^7.1.4",
"@angular/platform-browser-dynamic": "^7.1.4",
"@angular/router": "^7.1.4",
2018-04-04 14:05:29 +00:00
"angular-persistence": "^1.0.1",
"angular2-hotkeys": "^2.1.4",
"angular2-indexeddb": "^1.2.3",
"bootstrap": "4.2.1",
2019-01-09 12:45:37 +00:00
"command-exists": "^1.2.8",
2018-12-19 08:29:16 +00:00
"core-js": "^2.6.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",
"material-design-icons": "^3.0.1",
"ng2-file-upload": "^1.3.0",
"ngx-electron": "^2.0.0",
"notosans-fontface": "^1.1.0",
"raven-js": "^3.27.0",
"rxjs": "^6.3.3",
"rxjs-compat": "^6.3.3",
"typeface-roboto": "^0.0.54",
2018-12-10 12:59:20 +00:00
"yargs": "^12.0.5",
2018-04-11 06:44:20 +00:00
"zone.js": "^0.8.26"
2017-09-25 11:07:52 +00:00
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.11.4",
"@angular/cli": "^7.1.4",
2018-12-19 08:29:16 +00:00
"@angular/compiler-cli": "^7.1.4",
"@angular/language-service": "^7.1.4",
2018-12-10 12:59:20 +00:00
"@sentry/electron": "^0.14.0",
"@types/jasmine": "~3.3.5",
"@types/jasminewd2": "~2.0.6",
"@types/node": "~10.12.18",
"codelyzer": "~4.5.0",
"electron": "4.0.0",
"electron-builder": "^20.38.4",
"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-12-19 08:29:16 +00:00
"karma": "~3.1.4",
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",
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
2018-12-19 08:29:16 +00:00
"license-checker": "^24.1.0",
"node-fetch": "^2.3.0",
2018-12-10 12:59:20 +00:00
"node-sass": "^4.11.0",
"popper.js": "^1.14.6",
"prettier": "^1.15.2",
"protractor": "~5.4.2",
"ts-mockito": "^2.3.1",
"ts-node": "~7.0.1",
2018-12-19 08:29:16 +00:00
"tslint": "~5.12.0",
"tslint-config-prettier": "^1.16.0",
2018-12-10 12:59:20 +00:00
"typescript": "<3.2.0"
},
"greenkeeper": {
"ignore": [
"typescript"
]
2018-12-07 13:08:55 +00:00
}
2017-09-25 11:07:52 +00:00
}