OpenAuth_server/package.json

64 lines
1.9 KiB
JSON
Raw Normal View History

2018-11-06 19:48:50 +00:00
{
"name": "open_auth_service",
"version": "1.0.0",
"main": "lib/index.js",
"author": "Fabian Stamm <dev@fabianstamm.de>",
"license": "MIT",
"scripts": {
"start": "node lib/index.js",
2019-03-14 22:10:39 +00:00
"build-doc": "apidoc -i src/ -p apidoc/",
"build-ts": "tsc",
2018-11-06 19:48:50 +00:00
"build": "tsc && cd views && npm run build && cd ..",
2019-03-15 00:52:46 +00:00
"build-server": "tsc",
2018-11-06 19:48:50 +00:00
"watch-ts": "tsc -w",
"watch-views": "cd views && npm run watch",
"watch-node": "nodemon --ignore ./views lib/index.js",
"watch": "concurrently \"npm:watch-*\""
},
"devDependencies": {
2019-12-16 13:25:01 +00:00
"@types/body-parser": "^1.17.1",
"@types/compression": "^1.0.1",
"@types/cookie-parser": "^1.4.2",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/i18n": "^0.8.6",
2019-01-21 10:58:38 +00:00
"@types/ini": "^1.3.30",
2019-12-16 13:25:01 +00:00
"@types/jsonwebtoken": "^8.3.5",
"@types/mongodb": "^3.3.13",
"@types/node": "^12.12.18",
2019-01-21 10:58:38 +00:00
"@types/node-rsa": "^1.0.0",
2019-12-16 13:25:01 +00:00
"@types/qrcode": "^1.3.4",
"@types/speakeasy": "^2.0.5",
2019-12-16 13:25:01 +00:00
"@types/uuid": "^3.4.6",
"apidoc": "^0.19.0",
"concurrently": "^5.0.1",
"nodemon": "^2.0.2",
"speakeasy": "^2.0.0",
2019-12-16 13:25:01 +00:00
"typescript": "^3.7.3"
2018-11-06 19:48:50 +00:00
},
"dependencies": {
2019-12-16 13:25:01 +00:00
"@hibas123/config": "^1.0.3",
"@hibas123/nodelogging": "^2.1.2",
2018-11-06 19:48:50 +00:00
"@hibas123/nodeloggingserver_client": "^1.1.2",
2019-12-16 13:02:51 +00:00
"@hibas123/openauth-views": "file:../Views",
"@hibas123/safe_mongo": "^1.6.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
2019-03-13 01:06:09 +00:00
"cookie-parser": "^1.4.4",
2018-11-06 19:48:50 +00:00
"cors": "^2.8.5",
2019-12-16 13:25:01 +00:00
"dotenv": "^8.2.0",
"express": "^4.17.1",
2019-12-16 13:25:01 +00:00
"handlebars": "^4.5.3",
"i18n": "^0.8.4",
2018-11-06 19:48:50 +00:00
"ini": "^1.3.5",
"jsonwebtoken": "^8.5.1",
2019-03-13 01:06:09 +00:00
"moment": "^2.24.0",
2019-12-16 13:25:01 +00:00
"mongodb": "^3.4.0",
"node-rsa": "^1.0.7",
"qrcode": "^1.4.4",
2019-01-21 10:58:38 +00:00
"reflect-metadata": "^0.1.13",
2019-03-13 01:06:09 +00:00
"u2f": "^0.1.3",
2019-12-16 13:25:01 +00:00
"uuid": "^3.3.3"
2018-11-06 19:48:50 +00:00
}
2019-03-15 00:52:46 +00:00
}