portainer/package.json

126 lines
3.8 KiB
JSON
Raw Normal View History

{
"author": "Portainer.io",
"name": "portainer",
"homepage": "http://portainer.io",
2018-09-15 11:26:03 +00:00
"version": "1.20-dev",
"repository": {
"type": "git",
"url": "git@github.com:portainer/portainer.git"
},
"bugs": {
"url": "https://github.com/portainer/portainer/issues"
},
"config": {
"GA_ID": "UA-84944922-2"
},
"licenses": [
{
"type": "Zlib",
"url": "https://raw.githubusercontent.com/portainer/portainer/develop/LICENSE"
}
],
"scripts": {
"grunt": "grunt",
"start": "grunt run-dev",
2018-11-29 13:47:14 +00:00
"start:client": "webpack-dev-server",
"start:server": "yarn build:server:offline && grunt shell:run:amd64",
"clean:all": "grunt clean:all",
"build": "grunt build",
2018-11-29 11:02:36 +00:00
"build:server:offline": "cd ./api/cmd/portainer && CGO_ENABLED=0 go build -a --installsuffix cgo --ldflags '-s' && mv -f portainer ../../../dist/portainer-linux-amd64",
"build:client": "grunt build-webapp"
},
"engines": {
"node": ">= 0.8.4"
},
"dependencies": {
"@fortawesome/fontawesome-free-webfonts": "^1.0.9",
"@uirouter/angularjs": "~1.0.6",
"angular": "~1.5.0",
"angular-clipboard": "^1.6.2",
"angular-cookies": "~1.5.0",
"angular-file-saver": "^1.1.3",
"angular-google-analytics": "github:revolunet/angular-google-analytics#~1.1.9",
"angular-json-tree": "1.0.1",
"angular-jwt": "~0.1.8",
"angular-loading-bar": "~0.9.0",
"angular-local-storage": "~0.5.2",
"angular-messages": "~1.5.0",
"angular-mocks": "~1.5.0",
"angular-resource": "~1.5.0",
"angular-sanitize": "~1.5.0",
"angular-ui-bootstrap": "~2.5.0",
"angular-utils-pagination": "~0.11.1",
"angularjs-scroll-glue": "^2.2.0",
"angularjs-slider": "^6.4.0",
"bootbox": "^4.4.0",
"bootstrap": "~3.3.6",
"chart.js": "~2.6.0",
"codemirror": "~5.30.0",
"filesize": "~3.3.0",
"isteven-angular-multiselect": "~4.0.0",
"jquery": "^3.3.1",
"js-yaml": "~3.10.0",
"lodash-es": "^4.17.11",
"moment": "^2.21.0",
"ng-file-upload": "~12.2.13",
"rdash-ui": "1.0.*",
"splitargs": "github:deviantony/splitargs#~0.2.0",
2018-10-31 16:31:45 +00:00
"toastr": "^2.1.4",
"ui-select": "^0.19.8",
"xterm": "^3.8.0"
},
"devDependencies": {
2018-10-29 13:40:40 +00:00
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
2018-10-10 08:06:23 +00:00
"auto-ngtemplate-loader": "^1.3.0",
"autoprefixer": "^7.1.1",
2018-10-29 13:40:40 +00:00
"babel-loader": "^8.0.4",
2018-10-29 13:45:18 +00:00
"babel-plugin-lodash": "^3.3.4",
2018-10-14 10:12:15 +00:00
"clean-terminal-webpack-plugin": "^1.1.0",
2018-10-28 07:48:49 +00:00
"clean-webpack-plugin": "^0.1.19",
2018-10-10 08:06:23 +00:00
"css-loader": "^1.0.0",
"cssnano": "^3.10.0",
"eslint": "^3.19.0",
2018-10-10 08:06:23 +00:00
"eslint-loader": "^2.1.1",
"file-loader": "^1.1.11",
"grunt": "~0.4.0",
"grunt-cli": "^1.2.0",
"grunt-config": "^1.0.0",
"grunt-contrib-clean": "~0.4.0",
2015-09-13 21:39:51 +00:00
"grunt-contrib-concat": "~0.1.3",
"grunt-contrib-copy": "~0.4.0",
"grunt-contrib-jshint": "^1.1.0",
2015-09-13 21:39:51 +00:00
"grunt-contrib-uglify": "^0.9.2",
"grunt-contrib-watch": "~0.3.1",
"grunt-filerev": "^2.3.1",
"grunt-html2js": "~0.1.0",
2015-09-13 21:39:51 +00:00
"grunt-karma": "~0.4.4",
"grunt-postcss": "^0.8.0",
"grunt-replace": "^1.0.1",
"grunt-shell": "^1.1.2",
"grunt-usemin": "^3.1.1",
"grunt-webpack": "^3.1.3",
"gruntify-eslint": "^3.1.0",
2018-10-10 08:06:23 +00:00
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
2018-12-03 11:21:30 +00:00
"image-webpack-loader": "^4.5.0",
2018-10-10 08:06:23 +00:00
"load-grunt-tasks": "^3.5.2",
2018-11-12 19:56:51 +00:00
"lodash-webpack-plugin": "^0.11.5",
2018-10-16 13:21:35 +00:00
"mini-css-extract-plugin": "^0.4.4",
2018-10-10 08:06:23 +00:00
"ngtemplate-loader": "^2.0.1",
2018-11-26 14:25:00 +00:00
"postcss-loader": "^3.0.0",
"speed-measure-webpack-plugin": "^1.2.3",
2018-10-10 08:06:23 +00:00
"style-loader": "^0.23.1",
2018-10-14 05:21:10 +00:00
"url-loader": "^1.1.1",
"webpack": "^4.26.0",
2018-10-14 10:06:25 +00:00
"webpack-build-notifier": "^0.1.30",
2018-10-29 13:32:24 +00:00
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
2018-11-29 13:47:14 +00:00
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.4"
2018-10-31 16:31:45 +00:00
},
"resolutions": {
"jquery": "^3.3.1"
}
}