2017-05-26 23:51:48 -04:00
|
|
|
{
|
|
|
|
"name": "matrix-dimension",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "An alternative integrations manager for Riot",
|
2017-12-17 21:22:09 -05:00
|
|
|
"main": "build/app/index.js",
|
2017-05-26 23:51:48 -04:00
|
|
|
"license": "GPL-3.0",
|
|
|
|
"scripts": {
|
2019-03-12 20:03:25 -04:00
|
|
|
"start:web": "webpack-dev-server --inline --mode=development --progress --port 8082 --host 0.0.0.0",
|
2017-12-17 21:22:09 -05:00
|
|
|
"start:app": "npm run-script build && node build/app/index.js",
|
2019-06-30 21:14:07 -04:00
|
|
|
"start:apponly": "npm run-script build:app && node build/app/index.js",
|
2018-03-23 23:36:43 -04:00
|
|
|
"build": "npm run-script build:web && npm run-script build:app",
|
2018-12-09 00:36:25 -05:00
|
|
|
"build:web": "rimraf build/web && webpack --mode production --progress --profile --bail",
|
2018-03-23 23:36:43 -04:00
|
|
|
"build:app": "rimraf build/app && tsc -p tsconfig-app.json",
|
2018-03-23 23:29:48 -04:00
|
|
|
"lint": "npm run-script lint:app && npm run-script lint:web",
|
|
|
|
"lint:app": "tslint --project ./tsconfig-app.json -t stylish",
|
|
|
|
"lint:web": "tslint --project ./tsconfig.json -t stylish"
|
2017-05-26 23:51:48 -04:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/turt2live/matrix-dimension.git"
|
|
|
|
},
|
|
|
|
"author": "Travis Ralston",
|
|
|
|
"dependencies": {
|
2019-06-29 01:51:43 -04:00
|
|
|
"@types/bluebird": "^3.5.27",
|
2018-10-18 00:11:40 -04:00
|
|
|
"@types/body-parser": "^1.17.0",
|
2019-06-29 01:51:43 -04:00
|
|
|
"@types/node": "^12.0.10",
|
|
|
|
"@types/validator": "^10.11.1",
|
2019-06-27 23:55:09 -04:00
|
|
|
"body-parser": "^1.19.0",
|
2019-04-13 15:26:48 -04:00
|
|
|
"config": "^3.1.0",
|
2017-08-27 01:49:27 -04:00
|
|
|
"dns-then": "^0.1.0",
|
2019-06-27 23:55:09 -04:00
|
|
|
"express": "^4.17.1",
|
2018-10-18 00:11:40 -04:00
|
|
|
"git-rev-sync": "^1.12.0",
|
2019-02-07 23:17:50 -05:00
|
|
|
"isipaddress": "0.0.2",
|
2019-04-13 15:26:48 -04:00
|
|
|
"js-yaml": "^3.13.1",
|
2019-11-02 01:08:08 -04:00
|
|
|
"lodash": "^4.17.13",
|
2019-06-27 23:55:09 -04:00
|
|
|
"matrix-bot-sdk": "^0.3.8",
|
2018-10-18 00:11:40 -04:00
|
|
|
"matrix-js-snippets": "^0.2.8",
|
2017-12-17 21:22:09 -05:00
|
|
|
"memory-cache": "^0.2.0",
|
2019-04-13 15:26:48 -04:00
|
|
|
"mime": "^2.4.2",
|
|
|
|
"moment": "^2.24.0",
|
2017-10-09 22:26:46 -04:00
|
|
|
"netmask": "^1.0.6",
|
2017-05-27 01:08:24 -04:00
|
|
|
"random-string": "^0.2.0",
|
2018-10-18 00:11:40 -04:00
|
|
|
"request": "^2.88.0",
|
2019-03-21 00:32:29 -04:00
|
|
|
"request-promise": "^4.2.4",
|
2018-03-21 22:40:03 -04:00
|
|
|
"require-dir-all": "^0.4.15",
|
2019-04-13 15:26:48 -04:00
|
|
|
"semver": "^6.0.0",
|
2019-11-02 00:38:00 -04:00
|
|
|
"sequelize": "^5.15.1",
|
2019-11-02 13:45:57 -04:00
|
|
|
"sequelize-typescript": "^1.0.0",
|
2018-12-22 19:37:31 -05:00
|
|
|
"sharp": "^0.21.1",
|
2019-02-07 23:17:50 -05:00
|
|
|
"split-host": "^0.1.1",
|
2018-10-21 19:00:10 -04:00
|
|
|
"spotify-uri": "^1.0.0",
|
2019-06-27 23:55:09 -04:00
|
|
|
"sqlite3": "^4.0.9",
|
|
|
|
"telegraf": "^3.30.1",
|
|
|
|
"typescript": "^3.5.2",
|
2019-06-27 23:46:00 -04:00
|
|
|
"typescript-ioc": "^1.2.5",
|
2019-06-27 23:55:09 -04:00
|
|
|
"typescript-rest": "^2.2.0",
|
2019-04-13 15:26:48 -04:00
|
|
|
"umzug": "^2.2.0",
|
2017-12-17 21:22:09 -05:00
|
|
|
"url": "^0.11.0"
|
2017-05-26 23:51:48 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-06-29 02:40:24 -04:00
|
|
|
"@angular/animations": "^8.0.3",
|
|
|
|
"@angular/common": "^8.0.3",
|
|
|
|
"@angular/compiler": "^8.0.3",
|
|
|
|
"@angular/core": "^8.0.3",
|
|
|
|
"@angular/forms": "^8.0.3",
|
|
|
|
"@angular/platform-browser": "^8.0.3",
|
|
|
|
"@angular/platform-browser-dynamic": "^8.0.3",
|
|
|
|
"@angular/router": "^8.0.3",
|
2019-04-13 16:37:56 -04:00
|
|
|
"@angularclass/hmr": "^2.1.3",
|
|
|
|
"@angularclass/hmr-loader": "^3.0.4",
|
2019-06-27 23:55:09 -04:00
|
|
|
"@babel/core": "^7.4.5",
|
|
|
|
"@babel/preset-env": "^7.4.5",
|
2019-07-01 22:49:44 -04:00
|
|
|
"@ckeditor/ckeditor5-angular": "^1.1.0",
|
|
|
|
"@ckeditor/ckeditor5-build-classic": "^12.2.0",
|
2018-10-18 00:11:40 -04:00
|
|
|
"@fortawesome/fontawesome": "^1.1.8",
|
|
|
|
"@fortawesome/fontawesome-free-brands": "^5.0.13",
|
|
|
|
"@fortawesome/fontawesome-free-regular": "^5.0.13",
|
|
|
|
"@fortawesome/fontawesome-free-solid": "^5.0.13",
|
2019-06-27 23:55:09 -04:00
|
|
|
"@ng-bootstrap/ng-bootstrap": "^4.2.1",
|
|
|
|
"@types/jquery": "^3.3.30",
|
2017-05-26 23:51:48 -04:00
|
|
|
"angular2-template-loader": "^0.6.2",
|
2019-04-13 16:37:56 -04:00
|
|
|
"angular2-toaster": "^7.0.0",
|
2017-05-27 03:27:36 -04:00
|
|
|
"angular2-ui-switch": "^1.2.0",
|
2018-12-09 00:36:25 -05:00
|
|
|
"awesome-typescript-loader": "^5.2.1",
|
2019-04-13 16:37:56 -04:00
|
|
|
"bootstrap": "^4.3.1",
|
2019-06-27 23:55:09 -04:00
|
|
|
"codelyzer": "^5.1.0",
|
|
|
|
"copy-webpack-plugin": "^5.0.3",
|
|
|
|
"core-js": "^3.1.4",
|
2019-06-29 02:40:24 -04:00
|
|
|
"css-loader": "^3.0.0",
|
2019-04-13 16:37:56 -04:00
|
|
|
"cssnano": "^4.1.10",
|
2018-05-11 23:58:10 -04:00
|
|
|
"dom-to-image": "^2.6.0",
|
2018-10-18 00:11:40 -04:00
|
|
|
"embed-video": "^2.0.4",
|
2019-06-29 02:40:24 -04:00
|
|
|
"file-loader": "^4.0.0",
|
2017-12-10 02:59:36 -05:00
|
|
|
"goby": "^1.1.2",
|
2018-03-21 22:40:03 -04:00
|
|
|
"html-loader": "^0.5.5",
|
2018-12-09 00:36:25 -05:00
|
|
|
"html-webpack-plugin": "^3.2.0",
|
2019-07-01 22:49:44 -04:00
|
|
|
"iso-639-1": "^2.0.5",
|
2019-06-27 23:55:09 -04:00
|
|
|
"jquery": "^3.4.1",
|
2018-12-09 00:36:25 -05:00
|
|
|
"json-loader": "^0.5.7",
|
2019-06-29 02:40:24 -04:00
|
|
|
"mini-css-extract-plugin": "^0.7.0",
|
2017-12-14 23:25:15 -05:00
|
|
|
"ng2-breadcrumbs": "^0.1.281",
|
2019-04-13 16:37:56 -04:00
|
|
|
"ngx-modialog": "^5.0.1",
|
2019-06-27 23:55:09 -04:00
|
|
|
"node-sass": "^4.12.0",
|
2018-03-21 22:40:03 -04:00
|
|
|
"postcss-cssnext": "^3.1.0",
|
2019-04-13 16:37:56 -04:00
|
|
|
"postcss-import": "^12.0.1",
|
|
|
|
"postcss-loader": "^3.0.0",
|
|
|
|
"postcss-scss": "^2.0.0",
|
2019-06-29 02:40:57 -04:00
|
|
|
"raw-loader": "1.0.0",
|
2019-04-13 16:37:56 -04:00
|
|
|
"reflect-metadata": "^0.1.13",
|
|
|
|
"rimraf": "^2.6.3",
|
2019-06-27 23:55:09 -04:00
|
|
|
"rxjs": "^6.5.2",
|
|
|
|
"rxjs-compat": "^6.5.2",
|
2018-12-09 00:36:25 -05:00
|
|
|
"sass-loader": "^7.1.0",
|
2019-04-13 16:37:56 -04:00
|
|
|
"screenfull": "^4.2.0",
|
2018-12-09 00:36:25 -05:00
|
|
|
"shelljs": "^0.8.3",
|
2017-12-14 23:25:15 -05:00
|
|
|
"spinkit": "^1.2.5",
|
2018-12-09 00:36:25 -05:00
|
|
|
"style-loader": "^0.23.1",
|
2017-05-26 23:51:48 -04:00
|
|
|
"ts-helpers": "^1.1.2",
|
2019-06-27 23:55:09 -04:00
|
|
|
"tslint": "^5.18.0",
|
2018-12-09 00:36:25 -05:00
|
|
|
"tslint-loader": "^3.5.4",
|
2019-06-29 02:40:24 -04:00
|
|
|
"url-loader": "^2.0.1",
|
2019-06-27 23:55:09 -04:00
|
|
|
"webpack": "^4.35.0",
|
|
|
|
"webpack-cli": "^3.3.5",
|
|
|
|
"webpack-dev-server": "^3.7.2",
|
|
|
|
"zone.js": "^0.9.1"
|
2017-05-26 23:51:48 -04:00
|
|
|
}
|
|
|
|
}
|