63 linhas
1.8 KiB
JSON
63 linhas
1.8 KiB
JSON
{
|
|
"name": "vott-server",
|
|
"version": "1.0.0",
|
|
"description": "Server to support VoTT with login",
|
|
"main": "./lib/app.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node ./lib/app.js",
|
|
"test:unit": "jest --runInBand",
|
|
"test": "npm run lint && npm run test:unit",
|
|
"watch": "concurrently --kill-others \"tsc -w\" \"nodemon --inspect ./lib/app.js\"",
|
|
"lint": "tslint -q -p . -c tslint.json",
|
|
"lint:fix": "tslint --fix -p . -c tslint.json",
|
|
"debug": "nodemon --inspect ./lib/app.js | bunyan"
|
|
},
|
|
"author": "Microsoft",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@microsoft/microsoft-graph-client": "^1.7.0",
|
|
"body-parser": "^1.15.2",
|
|
"bunyan": "*",
|
|
"cookie-parser": "^1.4.3",
|
|
"cookie-session": "^1.3.3",
|
|
"cookies": "^0.7.3",
|
|
"ejs": ">= 0.0.0",
|
|
"ejs-locals": ">= 0.0.0",
|
|
"express": "^4.17.1",
|
|
"express-request-id": "^1.4.1",
|
|
"method-override": "^3.0.0",
|
|
"morgan": "^1.9.1",
|
|
"node-fetch": "^2.6.0",
|
|
"passport": "*",
|
|
"passport-azure-ad": "^4.1.0",
|
|
"simple-oauth2": "^2.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bunyan": "^1.8.6",
|
|
"@types/cookie-parser": "^1.4.2",
|
|
"@types/cookie-session": "^2.0.37",
|
|
"@types/cookies": "^0.7.2",
|
|
"@types/dotenv": "^6.1.1",
|
|
"@types/express": "^4.17.1",
|
|
"@types/express-request-id": "^1.4.1",
|
|
"@types/jest": "^24.0.17",
|
|
"@types/method-override": "0.0.31",
|
|
"@types/morgan": "^1.7.37",
|
|
"@types/node-fetch": "^2.5.0",
|
|
"@types/passport": "^1.0.1",
|
|
"@types/passport-azure-ad": "^4.0.3",
|
|
"@types/simple-oauth2": "^2.2.1",
|
|
"concurrently": "^4.1.1",
|
|
"dotenv": "^8.1.0",
|
|
"jest": "^24.8.0",
|
|
"nodemon": "^1.19.1",
|
|
"ts-jest": "^24.0.2",
|
|
"tslint": "^5.18.0",
|
|
"typescript": "^3.6.2"
|
|
},
|
|
"engines": {
|
|
"node": ">= 10.0.0"
|
|
}
|
|
}
|