2018-06-13 18:34:10 +02:00
|
|
|
{
|
2018-06-19 16:55:50 +02:00
|
|
|
"name": "OpenSlides3-Client",
|
2019-12-17 10:00:57 +01:00
|
|
|
"version": "3.1.1",
|
2019-01-07 13:59:31 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git://github.com/OpenSlides/OpenSlides.git"
|
|
|
|
},
|
|
|
|
"license": "MIT",
|
|
|
|
"description": "OpenSlides 3.0 (Client)",
|
|
|
|
"README": "https://github.com/OpenSlides/OpenSlides/blob/master/client/README.md",
|
2018-06-19 16:55:50 +02:00
|
|
|
"scripts": {
|
|
|
|
"ng": "ng",
|
2019-01-31 13:40:27 +01:00
|
|
|
"ng-high-memory": "node --max_old_space_size=4096 ./node_modules/@angular/cli/bin/ng",
|
2018-11-14 14:09:43 +01:00
|
|
|
"start": "ng serve --proxy-config proxy.conf.json --host=0.0.0.0",
|
2019-08-21 17:34:05 +02:00
|
|
|
"start-es5": "ng serve --proxy-config proxy.conf.json --host=0.0.0.0 --configuration es5",
|
2019-08-15 12:01:09 +02:00
|
|
|
"build": "npm run ng-high-memory -- build --prod",
|
2019-08-30 10:57:28 +02:00
|
|
|
"build-debug": "npm run ng-high-memory -- build",
|
2018-06-19 16:55:50 +02:00
|
|
|
"test": "ng test",
|
2019-10-11 14:29:38 +02:00
|
|
|
"test-silently": "npm run test -- --watch=false --no-progress --browsers=ChromeHeadlessNoSandbox",
|
2019-07-26 11:46:59 +02:00
|
|
|
"lint-check": "ng lint",
|
|
|
|
"lint-write": "ng lint --fix",
|
2018-06-19 16:55:50 +02:00
|
|
|
"e2e": "ng e2e",
|
2019-04-09 10:47:35 +02:00
|
|
|
"licenses": "node src/crawler.js",
|
2019-08-02 12:23:17 +02:00
|
|
|
"compodoc": "./node_modules/.bin/compodoc --hideGenerator -p tsconfig.app.json -n 'OpenSlides Documentation' -d ../Compodoc -s -o -r",
|
2019-02-11 12:39:41 +01:00
|
|
|
"extract": "ngx-translate-extract -i ./src -o ./src/assets/i18n/template-en.pot --clean --sort --format pot -m _",
|
2019-09-04 09:34:55 +02:00
|
|
|
"po2json": "./node_modules/.bin/po2json -f mf src/assets/i18n/de.po src/assets/i18n/de.json && ./node_modules/.bin/po2json -f mf src/assets/i18n/cs.po src/assets/i18n/cs.json && ./node_modules/.bin/po2json -f mf src/assets/i18n/ru.po src/assets/i18n/ru.json",
|
|
|
|
"po2json-tempfix": "./node_modules/.bin/po2json -f mf src/assets/i18n/de.po /dev/stdout | sed -f sed_replacements > src/assets/i18n/de.json && ./node_modules/.bin/po2json -f mf src/assets/i18n/cs.po /dev/stdout | sed -f sed_replacements > src/assets/i18n/cs.json && ./node_modules/.bin/po2json -f mf src/assets/i18n/ru.po /dev/stdout | sed -f sed_replacements > src/assets/i18n/ru.json",
|
2018-12-15 12:24:07 +01:00
|
|
|
"prettify-check": "prettier --config ./.prettierrc --list-different \"src/{app,environments}/**/*{.ts,.js,.json,.css,.scss}\"",
|
2019-07-26 11:46:59 +02:00
|
|
|
"prettify-write": "prettier --config ./.prettierrc --write \"src/{app,environments}/**/*{.ts,.js,.json,.css,.scss}\"",
|
2019-07-29 15:19:59 +02:00
|
|
|
"cleanup": "npm run prettify-write; npm run lint-write",
|
|
|
|
"cleanup-win": "npm run prettify-write & npm run lint-write"
|
2018-06-19 16:55:50 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-11-12 18:30:26 +01:00
|
|
|
"@angular/animations": "^8.2.14",
|
2019-08-30 10:57:28 +02:00
|
|
|
"@angular/cdk": "~8.1.4",
|
|
|
|
"@angular/cdk-experimental": "~8.1.4",
|
2019-11-12 18:30:26 +01:00
|
|
|
"@angular/common": "^8.2.14",
|
|
|
|
"@angular/compiler": "^8.2.14",
|
|
|
|
"@angular/core": "^8.2.14",
|
|
|
|
"@angular/forms": "^8.2.14",
|
2019-08-30 10:57:28 +02:00
|
|
|
"@angular/material": "~8.1.4",
|
|
|
|
"@angular/material-moment-adapter": "~8.1.4",
|
2019-11-12 18:30:26 +01:00
|
|
|
"@angular/platform-browser": "^8.2.14",
|
|
|
|
"@angular/platform-browser-dynamic": "^8.2.14",
|
|
|
|
"@angular/pwa": "^0.803.23",
|
|
|
|
"@angular/router": "^8.2.14",
|
|
|
|
"@angular/service-worker": "^8.2.14",
|
|
|
|
"@ngx-pwa/local-storage": "^8.2.4",
|
2019-08-30 10:57:28 +02:00
|
|
|
"@ngx-translate/core": "~11.0.1",
|
2018-11-14 14:09:43 +01:00
|
|
|
"@ngx-translate/http-loader": "^4.0.0",
|
2020-01-23 12:38:46 +01:00
|
|
|
"@pebula/ngrid": "1.0.0-rc.16",
|
|
|
|
"@pebula/ngrid-material": "1.0.0-rc.16",
|
|
|
|
"@pebula/utils": "1.0.2",
|
2019-11-12 18:30:26 +01:00
|
|
|
"@tinymce/tinymce-angular": "^3.3.1",
|
|
|
|
"acorn": "^7.1.0",
|
|
|
|
"chart.js": "^2.9.2",
|
|
|
|
"core-js": "^3.6.4",
|
|
|
|
"css-element-queries": "^1.2.3",
|
2019-08-30 10:57:28 +02:00
|
|
|
"exceljs": "1.15.0",
|
|
|
|
"file-saver": "^2.0.2",
|
2019-03-25 14:41:47 +01:00
|
|
|
"hammerjs": "^2.0.8",
|
2019-06-12 08:17:25 +02:00
|
|
|
"lz4js": "^0.2.0",
|
2019-02-12 13:30:02 +01:00
|
|
|
"material-icon-font": "git+https://github.com/petergng/materialIconFont.git",
|
2019-08-06 14:37:41 +02:00
|
|
|
"moment": "^2.24.0",
|
2019-11-12 18:30:26 +01:00
|
|
|
"ng2-charts": "^2.3.0",
|
2019-08-30 10:57:28 +02:00
|
|
|
"ng2-pdf-viewer": "^5.3.4",
|
2019-11-12 18:30:26 +01:00
|
|
|
"ngx-file-drop": "^8.0.8",
|
2019-08-30 10:57:28 +02:00
|
|
|
"ngx-mat-select-search": "^1.8.0",
|
2019-08-06 14:37:41 +02:00
|
|
|
"ngx-material-timepicker": "^4.0.2",
|
2019-08-30 10:57:28 +02:00
|
|
|
"ngx-papaparse": "^4.0.2",
|
2019-11-12 18:30:26 +01:00
|
|
|
"pdfmake": "^0.1.63",
|
|
|
|
"po2json": "^1.0.0-beta-2",
|
|
|
|
"rxjs": "^6.5.4",
|
|
|
|
"tinymce": "^5.1.5",
|
2019-08-30 10:57:28 +02:00
|
|
|
"tslib": "^1.10.0",
|
2019-11-12 18:30:26 +01:00
|
|
|
"uuid": "^3.3.3",
|
2019-07-01 11:23:33 +02:00
|
|
|
"zone.js": "~0.9.1"
|
2018-06-19 16:55:50 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-11-12 18:30:26 +01:00
|
|
|
"@angular-devkit/build-angular": "^0.803.23",
|
|
|
|
"@angular/cli": "^8.3.23",
|
|
|
|
"@angular/compiler-cli": "^8.2.14",
|
|
|
|
"@angular/language-service": "^8.2.14",
|
2019-08-30 10:57:28 +02:00
|
|
|
"@biesbjerg/ngx-translate-extract": "^3.0.5",
|
2020-03-23 14:26:38 +01:00
|
|
|
"@babel/compat-data": "~7.8.0",
|
2019-11-12 18:30:26 +01:00
|
|
|
"@compodoc/compodoc": "^1.1.11",
|
|
|
|
"@types/jasmine": "^3.5.0",
|
|
|
|
"@types/jasminewd2": "^2.0.8",
|
|
|
|
"@types/node": "^12.7.12",
|
|
|
|
"@types/yargs": "^13.0.5",
|
|
|
|
"codelyzer": "^5.2.1",
|
|
|
|
"husky": "^3.1.0",
|
2019-04-25 13:15:24 +02:00
|
|
|
"jasmine-core": "~3.4.0",
|
2018-06-19 16:55:50 +02:00
|
|
|
"jasmine-spec-reporter": "~4.2.1",
|
2019-11-12 18:30:26 +01:00
|
|
|
"karma": "^4.4.1",
|
2019-08-30 10:57:28 +02:00
|
|
|
"karma-chrome-launcher": "~3.1.0",
|
2019-11-12 18:30:26 +01:00
|
|
|
"karma-coverage-istanbul-reporter": "^2.1.1",
|
2019-01-30 12:53:16 +01:00
|
|
|
"karma-jasmine": "~2.0.1",
|
2019-11-12 18:30:26 +01:00
|
|
|
"karma-jasmine-html-reporter": "^1.5.1",
|
2019-04-09 10:47:35 +02:00
|
|
|
"npm-license-crawler": "^0.2.1",
|
2018-11-30 09:29:49 +01:00
|
|
|
"npm-run-all": "^4.1.5",
|
2019-12-02 16:55:46 +01:00
|
|
|
"prettier": "^1.19.1",
|
2019-01-30 12:53:16 +01:00
|
|
|
"protractor": "^5.4.2",
|
2019-06-14 11:18:54 +02:00
|
|
|
"resize-observer-polyfill": "^1.5.1",
|
2019-11-12 18:30:26 +01:00
|
|
|
"source-map-explorer": "^2.2.2",
|
2019-08-30 10:57:28 +02:00
|
|
|
"ts-node": "~8.3.0",
|
|
|
|
"tslint": "~5.19.0",
|
|
|
|
"tsutils": "3.17.1",
|
|
|
|
"typescript": "~3.5.3",
|
2019-11-12 18:30:26 +01:00
|
|
|
"webpack-bundle-analyzer": "^3.6.0"
|
2018-06-19 16:55:50 +02:00
|
|
|
}
|
2018-06-13 18:34:10 +02:00
|
|
|
}
|