2019-12-16 13:34:52 +00:00
|
|
|
{
|
|
|
|
"name": "open_auth_service",
|
2020-12-19 15:15:34 +00:00
|
|
|
"version": "1.1.2",
|
2019-12-16 13:34:52 +00:00
|
|
|
"main": "lib/index.js",
|
|
|
|
"author": "Fabian Stamm <dev@fabianstamm.de>",
|
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
|
|
|
"start": "node lib/index.js",
|
2020-03-09 17:46:41 +00:00
|
|
|
"install": "run-s install-views install-views_repo",
|
|
|
|
"build": "run-s build-ts build-doc build-views build-views_repo",
|
|
|
|
"watch": "concurrently \"npm:watch-*\"",
|
2020-03-17 15:27:57 +00:00
|
|
|
"dev": "npm run watch",
|
2019-12-16 13:34:52 +00:00
|
|
|
"build-doc": "apidoc -i src/ -p apidoc/",
|
|
|
|
"build-ts": "tsc",
|
|
|
|
"watch-ts": "tsc -w",
|
|
|
|
"watch-node": "nodemon --ignore ./views lib/index.js",
|
2020-03-09 17:46:41 +00:00
|
|
|
"install-views": "cd views && npm install",
|
|
|
|
"build-views": "cd views && npm run build",
|
|
|
|
"watch-views": "cd views && npm run watch",
|
|
|
|
"install-views_repo": "git submodule init && git submodule update && cd views_repo && npm install ",
|
|
|
|
"build-views_repo": "cd views_repo && npm run build",
|
2020-08-07 14:16:39 +00:00
|
|
|
"watch-views_repo": "cd views_repo && npm run dev",
|
2020-12-19 15:15:34 +00:00
|
|
|
"format": "prettier --write \"src/**\""
|
2020-03-09 17:46:41 +00:00
|
|
|
},
|
|
|
|
"pipelines": {
|
|
|
|
"install": [
|
|
|
|
"cd views && npm install",
|
|
|
|
"git submodule init",
|
|
|
|
"git submodule update",
|
|
|
|
"cd views_repo && npm install"
|
|
|
|
]
|
2019-12-16 13:34:52 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-03-09 14:01:11 +00:00
|
|
|
"@types/body-parser": "^1.19.0",
|
|
|
|
"@types/compression": "^1.7.0",
|
2019-12-16 13:34:52 +00:00
|
|
|
"@types/cookie-parser": "^1.4.2",
|
|
|
|
"@types/dotenv": "^8.2.0",
|
2020-03-09 14:01:11 +00:00
|
|
|
"@types/express": "^4.17.3",
|
2020-12-19 15:15:34 +00:00
|
|
|
"@types/i18n": "^0.12.0",
|
2019-12-16 13:34:52 +00:00
|
|
|
"@types/ini": "^1.3.30",
|
2020-03-09 14:01:11 +00:00
|
|
|
"@types/jsonwebtoken": "^8.3.8",
|
|
|
|
"@types/mongodb": "^3.5.2",
|
2020-12-19 15:15:34 +00:00
|
|
|
"@types/node": "^14.14.14",
|
2019-12-16 13:34:52 +00:00
|
|
|
"@types/node-rsa": "^1.0.0",
|
|
|
|
"@types/qrcode": "^1.3.4",
|
|
|
|
"@types/speakeasy": "^2.0.5",
|
2020-12-19 15:15:34 +00:00
|
|
|
"@types/uuid": "^8.3.0",
|
|
|
|
"apidoc": "^0.25.0",
|
2020-02-07 18:31:00 +00:00
|
|
|
"concurrently": "^5.1.0",
|
2019-12-16 13:34:52 +00:00
|
|
|
"nodemon": "^2.0.2",
|
2020-08-07 14:16:39 +00:00
|
|
|
"prettier": "^2.0.5",
|
2020-12-19 15:15:34 +00:00
|
|
|
"typescript": "^4.1.3"
|
2019-12-16 13:34:52 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-12-19 15:15:34 +00:00
|
|
|
"@hibas123/config": "^1.1.1",
|
2020-03-09 14:01:11 +00:00
|
|
|
"@hibas123/nodelogging": "^2.1.4",
|
2019-12-16 13:34:52 +00:00
|
|
|
"@hibas123/nodeloggingserver_client": "^1.1.2",
|
|
|
|
"@hibas123/safe_mongo": "^1.6.1",
|
|
|
|
"body-parser": "^1.19.0",
|
|
|
|
"compression": "^1.7.4",
|
|
|
|
"cookie-parser": "^1.4.4",
|
|
|
|
"cors": "^2.8.5",
|
|
|
|
"dotenv": "^8.2.0",
|
|
|
|
"express": "^4.17.1",
|
2020-02-07 18:31:00 +00:00
|
|
|
"handlebars": "^4.7.3",
|
2020-12-19 15:15:34 +00:00
|
|
|
"i18n": "^0.13.2",
|
|
|
|
"ini": "^2.0.0",
|
2019-12-16 13:34:52 +00:00
|
|
|
"jsonwebtoken": "^8.5.1",
|
|
|
|
"moment": "^2.24.0",
|
2020-03-09 14:01:11 +00:00
|
|
|
"mongodb": "^3.5.4",
|
2019-12-16 13:34:52 +00:00
|
|
|
"node-rsa": "^1.0.7",
|
2020-03-09 17:46:41 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2019-12-16 13:34:52 +00:00
|
|
|
"qrcode": "^1.4.4",
|
|
|
|
"reflect-metadata": "^0.1.13",
|
2019-12-16 13:38:13 +00:00
|
|
|
"speakeasy": "^2.0.0",
|
2019-12-16 13:34:52 +00:00
|
|
|
"u2f": "^0.1.3",
|
2020-12-19 15:15:34 +00:00
|
|
|
"uuid": "^8.3.2"
|
2019-12-16 13:34:52 +00:00
|
|
|
}
|
2020-03-11 15:59:13 +00:00
|
|
|
}
|