2018-09-14 21:31:01 -04:00
|
|
|
{
|
|
|
|
|
"name": "rtl",
|
2024-06-10 12:40:37 -07:00
|
|
|
"version": "0.15.1-beta",
|
2018-09-14 21:31:01 -04:00
|
|
|
"license": "MIT",
|
2021-12-29 18:08:41 -05:00
|
|
|
"type": "module",
|
2019-01-10 23:08:24 -05:00
|
|
|
"scripts": {
|
|
|
|
|
"ng": "ng",
|
2020-12-20 18:36:04 -05:00
|
|
|
"start": "ng serve --open",
|
2022-05-01 14:37:35 -04:00
|
|
|
"prebuildfrontendtest": "node src/prebuild.cjs",
|
2021-12-29 18:08:41 -05:00
|
|
|
"prebuildfrontend": "node src/prebuild.cjs",
|
2024-06-10 12:40:37 -07:00
|
|
|
"watchfrontenddev": "ng build --configuration development --optimization false --watch",
|
2022-12-13 15:53:41 -08:00
|
|
|
"buildfrontendtest": "ng test --watch=false && ng build",
|
|
|
|
|
"buildfrontend": "ng build --configuration production",
|
2023-10-03 17:35:13 -07:00
|
|
|
"buildbackend": "tsc --project ./server/tsconfig.server.json",
|
|
|
|
|
"watchbackend": "tsc --project ./server/tsconfig.server.json --watch",
|
2022-09-28 18:15:37 -07:00
|
|
|
"server": "set NODE_ENV=development&&nodemon --watch backend --watch server ./rtl.js",
|
2022-09-21 17:19:25 -07:00
|
|
|
"serverUbuntu": "NODE_ENV=development nodemon --watch backend --watch server ./rtl.js",
|
2021-12-29 18:08:41 -05:00
|
|
|
"testdev": "ng test --watch=true --code-coverage",
|
2022-12-27 19:12:27 -08:00
|
|
|
"test": "ng test --watch=false --browsers=ChromeHeadless",
|
2022-08-11 02:17:43 -07:00
|
|
|
"lint": "ng lint",
|
|
|
|
|
"lintServer": "eslint ./server/**/* --ext .ts"
|
2019-01-10 23:08:24 -05:00
|
|
|
},
|
2018-09-14 21:31:01 -04:00
|
|
|
"private": true,
|
|
|
|
|
"dependencies": {
|
2024-06-10 12:40:37 -07:00
|
|
|
"@ngrx/effects": "^17.2.0",
|
|
|
|
|
"@ngrx/store": "^17.2.0",
|
2023-12-05 20:32:05 -08:00
|
|
|
"@swimlane/ngx-charts": "^20.5.0",
|
2023-10-06 12:46:33 -07:00
|
|
|
"angular-user-idle": "^4.0.0",
|
2020-01-11 17:35:15 -05:00
|
|
|
"atob": "^2.1.2",
|
2022-08-09 23:27:55 -07:00
|
|
|
"cookie-parser": "^1.4.6",
|
2022-12-13 15:53:41 -08:00
|
|
|
"crypto-browserify": "^3.12.0",
|
2021-06-20 16:27:08 -04:00
|
|
|
"csurf": "^1.11.0",
|
2024-06-10 12:40:37 -07:00
|
|
|
"express": "^4.19.2",
|
|
|
|
|
"express-session": "^1.18.0",
|
2020-12-20 18:36:04 -05:00
|
|
|
"hocon-parser": "^1.0.1",
|
2024-06-10 12:40:37 -07:00
|
|
|
"ini": "^4.1.3",
|
2023-10-06 12:46:33 -07:00
|
|
|
"jsonwebtoken": "^9.0.2",
|
2024-06-10 12:40:37 -07:00
|
|
|
"ng-qrcode": "^18.0.0",
|
2022-08-09 23:27:55 -07:00
|
|
|
"ngx-perfect-scrollbar-next": "^10.1.1",
|
2020-12-20 18:36:04 -05:00
|
|
|
"otplib": "^12.0.1",
|
2024-06-10 12:40:37 -07:00
|
|
|
"pdfmake": "^0.2.10",
|
|
|
|
|
"process": "^0.11.10",
|
2022-12-21 11:11:27 -08:00
|
|
|
"request": "^2.88.2",
|
2020-12-20 18:36:04 -05:00
|
|
|
"request-promise": "^4.2.6",
|
2023-12-05 20:32:05 -08:00
|
|
|
"rxjs": "^7.8.1",
|
2019-05-06 21:56:11 -04:00
|
|
|
"sha256": "^0.2.0",
|
2024-06-10 12:40:37 -07:00
|
|
|
"socket.io-client": "^4.7.5",
|
2022-12-13 15:53:41 -08:00
|
|
|
"stream-browserify": "^3.0.0",
|
2023-12-05 20:32:05 -08:00
|
|
|
"tslib": "^2.6.2",
|
2024-06-10 12:40:37 -07:00
|
|
|
"vm-browserify": "^1.1.2",
|
|
|
|
|
"ws": "^8.17.0",
|
|
|
|
|
"zone.js": "^0.14.6"
|
2019-01-10 23:08:24 -05:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-06-10 12:40:37 -07:00
|
|
|
"@angular-devkit/build-angular": "^18.0.2",
|
|
|
|
|
"@angular-eslint/builder": "^18.0.1",
|
|
|
|
|
"@angular-eslint/eslint-plugin": "^18.0.1",
|
|
|
|
|
"@angular-eslint/eslint-plugin-template": "^18.0.1",
|
|
|
|
|
"@angular-eslint/schematics": "^18.0.1",
|
|
|
|
|
"@angular-eslint/template-parser": "^18.0.1",
|
|
|
|
|
"@angular/animations": "^18.0.1",
|
2023-12-05 20:32:05 -08:00
|
|
|
"@angular/cdk": "^17.0.1",
|
2024-06-10 12:40:37 -07:00
|
|
|
"@angular/cli": "^18.0.2",
|
|
|
|
|
"@angular/common": "^18.0.1",
|
|
|
|
|
"@angular/compiler": "^18.0.1",
|
|
|
|
|
"@angular/compiler-cli": "^18.0.1",
|
|
|
|
|
"@angular/core": "^18.0.1",
|
2023-10-06 12:46:33 -07:00
|
|
|
"@angular/flex-layout": "^15.0.0-beta.42",
|
2024-06-10 12:40:37 -07:00
|
|
|
"@angular/forms": "^18.0.1",
|
2023-12-05 20:32:05 -08:00
|
|
|
"@angular/material": "^17.0.1",
|
2024-06-10 12:40:37 -07:00
|
|
|
"@angular/platform-browser": "^18.0.1",
|
|
|
|
|
"@angular/platform-browser-dynamic": "^18.0.1",
|
|
|
|
|
"@angular/router": "^18.0.1",
|
|
|
|
|
"@fortawesome/angular-fontawesome": "^0.15.0",
|
|
|
|
|
"@fortawesome/fontawesome-svg-core": "^6.5.2",
|
|
|
|
|
"@fortawesome/free-regular-svg-icons": "^6.5.2",
|
|
|
|
|
"@fortawesome/free-solid-svg-icons": "^6.5.2",
|
|
|
|
|
"@ngrx/store-devtools": "^17.2.0",
|
2023-12-05 20:32:05 -08:00
|
|
|
"@types/jasmine": "^5.1.4",
|
2024-06-10 12:40:37 -07:00
|
|
|
"@types/node": "^20.14.1",
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "^7.12.0",
|
|
|
|
|
"@typescript-eslint/parser": "^7.12.0",
|
|
|
|
|
"dotenv": "^16.4.5",
|
|
|
|
|
"eslint": "^9.4.0",
|
|
|
|
|
"eslint-plugin-deprecation": "^3.0.0",
|
|
|
|
|
"jasmine-core": "^5.1.2",
|
2022-11-28 20:42:17 -08:00
|
|
|
"jasmine-spec-reporter": "^7.0.0",
|
2024-06-10 12:40:37 -07:00
|
|
|
"karma": "^6.4.3",
|
2023-12-05 20:32:05 -08:00
|
|
|
"karma-chrome-launcher": "^3.2.0",
|
|
|
|
|
"karma-coverage": "^2.2.1",
|
|
|
|
|
"karma-jasmine": "^5.1.0",
|
|
|
|
|
"karma-jasmine-html-reporter": "^2.1.0",
|
2023-10-06 12:46:33 -07:00
|
|
|
"material-icons": "^1.13.12",
|
2024-06-10 12:40:37 -07:00
|
|
|
"nodemon": "^3.1.3",
|
2022-11-28 20:42:17 -08:00
|
|
|
"protractor": "^7.0.0",
|
2022-08-21 12:46:36 +02:00
|
|
|
"roboto-fontface": "^0.10.0",
|
2024-06-10 12:40:37 -07:00
|
|
|
"ts-node": "^10.9.2",
|
|
|
|
|
"typescript": "~5.4.5"
|
2018-09-14 21:31:01 -04:00
|
|
|
}
|
2024-06-10 12:40:37 -07:00
|
|
|
}
|